Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Arts & Entertainment Blogs  >  ProgramJoy.blogspot.com arts-and-entertainment Blog  > 

Programjoy.blogspot.com Blog


programjoy.blogspot.com
Want to learn programming languages...? Get the knowledge from here... Laearn and earn from programming-this is our motto...
2020-10-13 07:56
Q. Do we have to use int in C language even if we dont have any integers in our program?Ans: No, we don't have to use any integer variable in a C program which doesn't require any integer(s)… Read More
2020-03-23 14:18
8085 Microprocessor Assembly Level Language program for Addition of two 8-bit numbersLABELOpcodeMemory Address MVIC,00 LDAF100 MOVB,A LDAF101 ADDB JNCLOOP: INRC:LOOPSTAF103 MOVA,C STAF102 HL… Read More
Print The Following Pattern In C Language
2019-12-26 07:55
In this C-program we will Print the following Pattern made of 1 and 2. The no. of rows will be taken from the user.color>112121121212121input: The number of rows. output: The Pattern wi… Read More
Print The Following Pattern In C Language
2019-12-26 07:53
In this C-program we will Print the following Pattern made of A and B. The no. of rows will be taken from the user.color>AABABAABABABABAinput: The number of rows. output: The Pattern wi… Read More
Matrix Multiplication In C Language
2019-12-26 06:26
In this C program we will multiply two matrices and print the result on the screen.The elements of the matrices will be taken from the user.color>input: The elements of matrices. output:… Read More
Matrix(3*3) Addition In C-Language
2019-12-23 09:22
In this C program we will add two matrices(3*3) and print the result on the screen.The elements of the matrices will be taken from the user.color>input: The elements of matrices(3*3). ou… Read More
The Dice Game In C-Language
2019-12-11 16:04
The Dice Game Description: The Dice Game is the result of different and innovative thinking. The idea is to play a game, made by a simple code in C-Language. No graphics, just a simple game… Read More
Time Delay In C Language
2019-12-06 10:57
In this C program we will delay the program for a period of time. The period of time(in seconds) will be taken by the user.color>input: The amount of time(in seconds). output: The delay… Read More
2019-12-05 08:16
  Download the 2016 Hon. Question Paper. COMPUTER SCIENCE - HONOURS [Part - III : 3rd Year]FIFTH PAPER - 2016Full Marks - 100Answer Question No. 1 and any five questions from the… Read More
Show Date And Time In C Language
2019-12-04 09:31
In this C program we will print the local date and time using time_t datatype and ctime function. Both pre-defined in time header file. (i.e: #include)color>input: NULL. output: The loc… Read More
CU Question Paper 2017 CMSA 3rd Year
2019-11-09 12:02
COMPUTER SCIENCE - HONOURS [Part - III : 3rd Year]FIFTH PAPER - 2017Full Marks - 100Answer Question No. 1 and any five questions from the rest taking at least one from each group1. Answer a… Read More
Radix Sort In C Language
2019-11-04 07:21
In this C program we will perform Radix Sort. The Number of elements and the highest length of the number will be taken from the user.color>input: The number of the elementsThe highest l… Read More
String Copy Without Strcpy() In C-Language
2019-09-06 14:24
In this C program we will copy the contents of a string into another without strcpy()fuction. The String will be given by the User.color>Learn about different string functions and their… Read More
String Copy Using Strcpy() In C-Language
2019-09-05 13:51
In this C program we will copy the contents of a string into another using strcpy()fuction. The String will be given by the User.color>strcpy() function copies the contents of one string… Read More
Reverse A String In C Language
2019-08-29 14:41
In this C program we will store a String in memory and Reverse it. The String will be given by the User.color>input: The String. output: The Reversed String will be printed on the scree… Read More
Storing A String In C-Language
2019-08-29 13:42
In this C program we will store a String in memory. The String will be given by the User.color>input: The String. output: The String will be printed on the screen which is given by the… Read More
Queue Using Linked List In C-Language
2019-08-24 12:36
In this C program we will perform Linear Queue operations using Linked List.color>input: The Choice(i.e Data insert, Data delete and Display) & The Number (integers) (i.e. for Data i… Read More
Print The Following Pattern In C-Language
2019-08-19 12:08
In this C-program we will Print the following Pattern made of numbers(1,2,3 etc). The no. of rows will be taken from the user.color>12 34 5 67 8 9 10input: The number of rows. output: T… Read More
Square Made Of Asterisk(*) In C-Language
2019-08-19 10:53
In this C-program we will Print the Square made of asterisk(*). The no. of rows will be taken from the user.color> * * * * * * * * *input: The number of rows. output: The Pattern… Read More
C-Program Of Singly Linked List
2019-08-11 15:32
In this C program we will perform operations on Singly Linked List(i.e: Data insert Operations(at begining or at end or at any position), Data remove Operation(from begining or from end or… Read More
A Pattern Using Asterisk(*) In C-Language
2019-03-24 16:47
In this C-program we will Print a pattern using Asterisks(*). The no. of rows will be taken from the user. In the first Row the no. of spaces will be (n-1) [Here, we considered that, the us… Read More
Perfect Numbers In A Range In C-Language
2019-01-10 14:24
In this C-program we will check the Perfect numbers in a given Range and print them on the screen. The lower range and the upper range will be taken from the user.color>input: The Lower… Read More
Linear Queue Program In C-Language
2019-01-07 16:24
In this C program we will perform operations over Linear Queue(i.e: Data insert Operation, Data remove Operation and display Operation). The Choice(i.e: data insert,remove or display) will… Read More
2019-01-02 17:16
In this C program we will perform operations over Stack(i.e: Push Operation, Pop Operation and Display Operation). The Choice(i.e: Push,Pop or Display) will be made by the user and The Numb… Read More
Calculate The Size Of A File In C-Language
2018-12-21 16:22
In this C program we will calculate the Size of a text-file(.txt). Then, we will print the Size of the File in bytes.color>input: NULL output: The Size of the text-file(.txt) will be pr… Read More
Write Into A Text-file(.txt) In C-Language
2018-12-19 11:54
In this C program we will Write some content into a text-file(.txt). Then, we can see the content of text-file(.txt) by opening in externally for varification if the Content entered by the… Read More
Reading From A File In C-Language
2018-12-13 15:34
In this C program we will Read the content of a text-file(.txt) by printing the content of the text-file(.txt)in the screen.color>input: NULL. output: The content of the text-file(.txt)… Read More
Bubble Sorting In C Language
2018-10-29 13:43
In this C program we will sort(in ascending order) some elements and print the sorted order of the Array of elements, in the screen. The Number of elements to be entered in the Array will… Read More
C-Program Of XOR Calculation(2 Bit)
2018-07-18 14:27
In this C program we will calculate the XOR function between two bits(i.e: 0 or 1) and print the result, in the screen. The two bits(i.e: 0 or 1) will be taken from the user.color>Discu… Read More
WhatsApp Application Crashing
2018-06-24 11:45
In this Post, we will discuss about the new spam message, which has recently started circulating via whatsapp and it is making everyone’s whatsapp application crashed...color>A new… Read More
NPr & NCr Calculator Using C-Language
2018-05-24 09:34
In this C program we will calculate the nPr or nCr and print the result, in the screen. The choice will be taken from the user. User can calculate nCr or nPr by choice.color>If you are n… Read More
Calculate Gross Salary
2018-04-27 12:12
In this C program we will calculate the Gross Salary and print the result, in the screen. The Basic salary, DA and HRA will be taken from the user.color>input: Basic Salary,DA and HRA (… Read More
Sum Of Two Integer Numbers Using Function
2018-04-23 07:46
In this C program we will calculate the summation of two numbers(int) using "Function" and print the result, in the screen. The two numbers will be taken from the user.color>input: Two… Read More
OR Gate
2018-01-09 13:37
OR GateIntroduction :- The OR Gate performs logical addition, commonly known as OR function. The OR Gate has two or more inputs and only one output. The operation of OR Gate is such that a H… Read More
2017-12-04 13:11
In this C++ program we will calculate the sum of the two numbers(float) and print the result, in the screen. The two numbers will be taken from the user.color>input: Two numbers. (i.e… Read More
Float Division In C++
2017-12-03 17:32
In this C++program we will calculate the division between two numbers(float). The numbers will be taken from the user.color>input: Two numbers.(i.e : 9,56,548) output: After division th… Read More
Hello World In PYTHON
2017-11-30 11:37
In this PYTHON program we will print "Hello World !!!" in the screen. color>input: Null. output: "Hello World !!!" will be printed on the screen. CODE----> printcolor>(" Hello W… Read More
Division In C++ Language(integer Division)
2017-11-30 10:27
In this C++ program we will calculate the division between two numbers and print the result, in the screen. The two numbers will be taken from the user.color>input: Two numbers. (i.e. 1… Read More
Sum Of Two Numbers In C++ Program
2017-11-27 09:04
In this C++ program we will calculate the sum of the two numbers and print the result, in the screen. The two numbers will be taken from the user.color>input: Two numbers. (i.e. 15,65 e… Read More
C++ Program To Print
2017-11-08 15:37
In this C++ program we will print "Hello world !!!".color>input: Null. output: " Hello world !!! " will be printed on the screen. CODE----> #include#includecolor>using namespace… Read More
C-program To Print A To Z Using Loop
2017-10-27 13:54
In this C-program we will print the alphabets A to Z , using loop.color>input: Null. output: print A to Z CODE----> #include#includecolor>main()color>{char char_end='Z', char_… Read More
2017-10-13 14:56
In this C-program we will calculate the power of a number and print the result. The number will be taken from the user.color>We can calculate the power of a number in two ways. In the fi… Read More
2017-10-13 05:15
In this C-program we will print the Multiplication-Table of a Number. The number will be taken from the user.color>input: The number.(i.e : 5,6,9 etc.) output: The Multiplication table… Read More
2017-10-12 09:07
In this C-program we will make a calculator.color>input: Your choice of calculation(i.e : multiplication,division etc.) and the numbers you want to calculate. output: The Calculator mad… Read More
2017-10-10 07:48
In this C-program we will find the factors of a number. The number will be taken from the user.color>input: The number(i.e : 5,6,9 etc.) output: The factors of the given number CODE… Read More
2017-10-04 12:06
In this C-program we will calculate the factorial of a number. The number will be taken from the user.color>input: The number(i.e : 5,6,9 etc.) output: The factorial of the given number… Read More
2017-10-02 14:55
In this C-program we will check a number is Prime or not. The number will be taken from the user.color>input: The number(i.e : 5,6,9 etc.) output: The number will be Prime or not CODE… Read More
2017-10-02 14:51
In this C-program we will print the Fibonacci Seriescolor> upto a range. The range will be taken from the user.color>input: The range(i.e : 5,6,9 etc.) output: The fibonacci series u… Read More
2017-10-02 14:50
In this C-program we will reverse the number. The number will be taken from the user.color>input: The number(i.e : 567,610,7899 etc.) output: The reversed number of the given number COD… Read More
2017-09-01 12:29
In this C-program we will take two floats(decimal number) as input from user and print the result(division).color>input: Two numbers(i.e : 5.7,6.8,3.5 etc.) output: Division of the two… Read More
2017-08-31 09:01
Google ad.color> In this C-program we will check that, if a integer(decimal number) is odd or even. The number will be taken from the user.color>input: The number(i.e : 5,6,3 etc.) out… Read More

Share the post

ProgramJoy.blogspot.com

×

Subscribe to Programjoy.blogspot.com

Get updates delivered right to your inbox!

Thank you for your subscription

×