/** C PROGRAM TO PRINT LOVE SYMBOL **/

Explanation : Here we are printing the ASCII value of 3 . Which gives a love shape symbol. you can also print directly by writhing the following code.  printf(” %c “,3); Output:

/*** C PROGRAM TO CONCATENATE TWO GIVEN STRINGS ***/

Output:

/** program for finding the H.C.F (HIGHEST COMMON FACTOR) of given set of Numbers **/

Output: ( using GNU GCC Compiler with code::blocks IDE)  

/** c program to sort the marks of the students with their names using function **/ original post

  Output: ( using GNU GCC Compiler with code::blocks IDE) output 1: (here the output of the program after entering all values) output 2: (output to show if the size >… Continue Reading C PROGRAM TO SORT MARKS OF STUDENTS WITH THEIR NAMES USING FUNCTION

/** C PROGRAM TO SORT AN ARRAY USING FUNCTION **/

Output: ( using GNU GCC Compiler with code::blocks IDE)  

/** C PROGRAM TO FIND THE AVERAGE OF MARKS USING FUNCTION **/

Output: ( using GNU GCC Compiler with code::blocks IDE )  

/***  THIS C PROGRAM TAKES A LINE OF STRING AS INPUT AND PRINTS THE VOWELS AND THE COUNT OF VOWELS OCCURRED IN IT  ***/

OUTPUT:

/** C PROGRAM TO PRINT MATRIX IN SNAIL SHELL FORMAT **/ //for printing matrix as in the below given format //   01  02  03  04 //   12  13  14   05 //   11  16  15   06 //  10  09  08  07

  Output: ( using GNU GCC… Continue Reading C PROGRAM TO PRINT MATRIX IN SNAIL SHELL WAY

/* C Program to find Factorial of given Number using Function */

Sample Output: ( using GNU GCC Compiler with code::blocks IDE, hence no need of clrscr(); and getch(); )  

/** C Program to find the Factorial of Given Number **/

Sample Output: ( using GNU GCC Compiler with code::blocks IDE, hence no need of clrscr(); and getch(); ) For C# Program :  C# Program to Find Factorial of Number  

/** C Program to Print Multiplication Table of a given Number **/

Sample Output : ( using GNU GCC Compiler with code::blocks IDE, hence no need of clrscr(); and getch(); )  

/* To Find Whether Number is Palindrome or Not */

Sample Output:( using GNU GCC Compiler with code::blocks IDE, hence no need of clrscr(); and getch(); )

/** To Find Reverse Of a Number **/

Output: ( using GNU GCC Compiler with code::blocks IDE, hence no need of clrscr(); and getch(); )

/* c program to print prime numbers between given range */

  Output: ( using GNU GCC Compiler with code::blocks IDE, hence no need of clrscr(); and getch(); )

/ * c program to print Prime Numbers Between 1 and n * /

Output: ( using GNU GCC Compiler with code::blocks IDE, hence no need of clrscr(); and getch(); )

/ * C program to find the Number is Prime or not-Prime */

  Output: (using GNU GCC Compiler with Code::Blocks Compiler)  

/* C Program to find Greatest of Two Numbers Using Conditional Operator.. */

Sample Output: ( using GNU GCC Compiler with Code Blocks IDE )

/* C program to generate and print Fibonacci series */

Output: ( using GNU GCC Compiler with Code Blocks IDE )  

/* C Program to Swap Two Numbers using Temp/Third Variable */

Output: ( using GNU GCC Compiler with Code Blocks IDE )  

/* C program to add n integers using array */

Output: ( using GNU GCC Compiler with Code Blocks IDE )