Get More C Programs Collection On My Blog.
Program To Print Name In C.
Program for adding two number using different data types.
Ternary operator-Program for finding minimum number
.
Program To Calculate the Simple Interest
.
Program To Conversion of Centimeters in Feet's & Inches.
NUMERIC CALCULATOR In C.
Program for reversing the digit
.
Program for printing Prime numbers.
Program for generating a sequence.
Program for calculating an Armstrong number.
Program for calculating Total Pay.
Program for printing Fibonacci Series.
Program for calculating power of a number.
Program for calculating sum of first 'n' number.
Program for finding Maximum & Minimum number from an
array.
Program for searching a character in a string
.
Program for printing Pascal's Triangle.
Program for Reversing a line of text.
Program for Encoding & Decoding a Line of text.
Program for splitting an array.
Program for Replacing a character.
Program to calculate the sum of series.
Program to calculate frequency of vowels in a string.
Program for rotating circles using math's.
Program for Prime Number Generation.
Program for finding the prime numbers.
Program for computing Area, Volume and Perimeter of Rrectangle.
Program for Binary, Octal, Hexadecimal Conversions.
Printing a double pyramid.
Program for finding the sum of digits of a five digit number.
Program to find Factorial by using Function.
PROGRAM TO FIND WHETHER A GIVEN YEAR IS LEAP YEAR OR NOT.
Program to reverse the input string.
Program to convert degrees Fahrenheit to degree celsius.
Program to Find the absolute value of an integer taken as input.
Program to Take input into a string and count the number of capital letters, small letters, digits and special symbols in it.
Program to create a 10 element array of integers and search for a value in it.
Program to find out the highest and lowest marks obtained in a class of 10 students.
Program to Create a 10 element array of integers and count the number of odd and even values in it.
Program to Write a menu based program which allows users to
calculate the area and perimeter of the following shapes :
1. Circle
2. Triangle
3. Rectangle
4. Square
The program should exit only when the user desires.
Program to Study of arithmetic operation on integers.
Program to Study of arithmetic operation on floating point values.
Program to Study of arithmetic operation on characters.
Program to Study of all arithmetic operations on integers.
Program to study of arrays - 1.
Program to study of arrays - 2.
Program to Study of 2D Array.
Program to Study of 2D array .
Program to Study of 2D array.
Program to study of arrays - 3.
Program to Study of 3D array.
Program to array of pointers.
Program to store and calculate the average percentage obtained by a class of 10 students.
Program to Using a 2D char array to store a list.
Program to Using a 2D char array to store a list.
Program to Given a character, display the ascii value of the char.
Program to Find the length of a string.
Program to Study of bitwise operators.
Program to Understanding the concept of code blocks.
Program to implement the binary search algorithm.
Program to Sorting an array in ascending order - exchange sort algorithm.
Program to Given any date find the day in Calender.
Program to Determine whether the character value taken as input is a capital letter, small letter, digit or special symbol.
Program to study of conditional compilation directive.
Program to Study of console i/o - 1.
Program to Study of console i/o - 2.
Program to Study of console i/o - 3
Study of field width to restrict input.
Program to Study of console i/o - 4
Study of field width to justify output.
Program to Study of console i/o - 5
Study of precision width with floating point output
.
Program to constant pointers.
Program to Sample program on switch ... case
using character constants.
Program to Sample program on switch ... case
using character constants. using case without break.
Program to Take two numbers as input and determine whether
the first number is divisible by the second.
Program to Demonstrate the working of the do ... while statement.
Program to Calculate n!
Program to Accept marks obtained in 5 subjects in a loop, calculate the percentage and determine the highest and lowest marks.
Program to Display all the odd and even numbers from 1 to 50.
Program to Calculate X^n where n can either be zero, a positive integer or negative integer.
Program to Take a number as input and reverse the number.
Program to Example of a program making finite but unknown repetitions.
Program to Write a program for a match-stick game between the computer and a user.
Rules for the game are as follows:
a. There are 21 match-sticks.
b. A player can pick up only upto four sticks at a time.
c. The total number of sticks picked up by both the players
in a single turn should be equal to five.
d. The player who picks up the last stick is the loser.
e. The user should play first.
Program to Find out the sum of first 100 natural numbers.
Program to Calculate the sum of all numbers between two given numbers.
Program to Display the multiplication table of a number upto 10.
Program to Study of dynamic memory allocation.
A program to accept input into a dynamically allocated array of floats to store the marks of students of a class and determine their grades and the
topper.
Program to Study of dynamic memory allocation.
A program to store the names of five persons and search for a person.
Program to Study of break statement.
Program to Study of continue statement.
Program to Calculate n!
Program to Study of file i/o - 1
Writing characters to a file with fputc( ).
Program to count the number of characters in a file.
The program should take the filename through command line arguments.
Program to Study of file i/o - 2
Reading characters from a file with fgetc( ).
Program to take the names of two files as input through command line arguments and compare the files one line at a time.
Display those lines which do not match.
Program to Study of file i/o - 3
Writing strings to a file with fputs( ).
Program to Determine the size of a file in the following cases
i) if the size is less than 1 KB then find out the size in bytes.
ii) if the size is less than 1 MB then find out the size in kilobytes.
iii) if the size is less than 1 GB then find out the size in megabytes.
Program to Study of file i/o - 4
Reading strings from a file with fgets( ).
Program to copy the contents of one file to another.
Program to Study of file i/o - 5
Writing block of data to a file with fwrite( ).
Program to concatenate the contents of two files into a third file.
Program to Study of file i/o - 6
Reading block of data from a file with fread( ).
Program to A company maintains the following details about its
employees : Name, Telephone number, Designation, Department,
Date of joining and Salary. Write a program which allows the
user to add, modify, delete, view and search an employee's details.
Maintain all employee data in a file.
Program to Study of random file access.
Program to study of low level file i/o
Program to First C Program.
Program to Accept marks obtained in 5 subjects in a loop, calculate the percentage and determine the highest and lowest marks.
Program to A function returning the area and perimeter of a circle.
Program to A function returning the area and perimeter of a rectangle.
Program to A function returning the area and perimeter of a triangle.
Program to Passing array element as parameter to a function.
Program to Passing entire array as a parameter to a function.
Program to determine the weekday for a valid date.
Program to Display a horizontal line as per specified input.
Program to which has a function named lower which converts an upper case character value into its corresponding lower case character. The function does not return anything.
Program to Command line arguments.
Program to Using the mathematical library functions.
Program to Write a menu based program which allows users to perform
the following tasks :
1. Calculate the sum of digits of a number
2. Reverse a number
3. Determine whether a year is leap or not.
4. Display the multiplication table of a number upto 10
5. Calculate Xn
6. Calculate n!
7. Determine whether a date entered is valid or not.
The program should exit only when the user desires.
Program to Write a menu based program which allows users to calculate the area and perimeter of the following shapes :
1. Circle
2. Triangle
3. Rectangle
4. Square
The program should exit only when the user desires.
Program to Write a program which has a function to determine whether a string is a palindrome or not.
Ex : madam, Malayalam, Nitin.
Program to which displays all prime numbers between a given range. The program should have function to determine whether a given number is prime or not.
Program to Calculate the X^n using recursive function.
Program to Study of recursive functions.
Program to Calculate factorial using recursive function.
Program to Calculate simple interest using a function .
Program to Calculate sum of digits using a function.
Program to Using the standard library functions.
Program to Replicate the standard string library function strcat().
Program to Replicate the standard string library function strcmp().
Program to Replicate the standard string library function strcpy().
Program to Replicate the standard string library function strlen().
Program to Using the string library functions.
Program to Replicate the standard string library function strrev().
Program to Replicate the standard string library function strstr().
Program to Interchange the contents of two variables using a function.
Program to Using a function to interchange the contents of two variables & Illustrates parameter pass by reference.
Program to which has a function named upper which converts a lower case character value into its corresponding upper case character. The function does not return anything.
Go to Next page
The following text will not be seen after you upload your website, please keep it in order to retain your counter functionality
When you look for
online casinos
the Internet should be a good way to start.
web site counter