Chapter 1 : Basic C Programs

NoPrograms
1Print Hello Word
2Declaring Variable and Printing its Value

Chapter 2 : Area Programs

NoPrograms
1C Program to Calculate Area and Circumference of Circle
2C Program to Calculate Area of Scalene Triangle
3C Program to Calculate Area of Equilatral Triangle
4C Program to Calculate Area of Right angle Triangle
5C Program to Calculate Area of Circle
6C Program to Calculate Area of Rectangle
7C Program to Calculate Area of Square
8C Program to Calculate Area of Circle using Pointer

Chapter 3 : Mathematical Programs

NoPrograms
1Compute sum of the array elements using pointers !
2Find exponent Power Series !!
3Read the values of x y and z and print the results expressions in one line.
4Reads customer number and power consumed and prints amount to be paid
5Find greatest in 3 numbers
6Calculate gross salary of a person.
7Reverse a given number !
8Calculate sum of 5 subjects and Find percentage
9Convert temperature from degree centigrade to Fahrenheit
10Find the simple interest
11Find area and circumference of circle
12Find sum of two numbers
13Solve Second Order Quadratic Equation
14Find Factorial of Number Using Recursion
15Find Factorial of Number without using function
16Print table of n and square of n using pow()

Chapter 4 : Number Programs in C Programming

NoPrograms
1Calender Program in C Programming Language : Display Day of the month
2Find greatest in 3 numbers
3Reverse a given number !
4Swap of two no’s without using third variable
5Calculate sum of 5 subjects and find percentage
6Find sum of two numbers
7Generate the Fibonacci Series starting from any two numbers
8Print First 10 Natural Numbers
9Find Factorial of Number Using Recursion
10Check Whether Given Number is Palindrome or Not ????
11Check Whether Number is Prime or not
12Check for Armstrong Number in C
13Check Whether Number is Perfect Or Not
14Print All ASCII Value Table in C Programming
15Find Factorial of Number without using function

Chapter 5 : 1-D Array Programs

NoPrograms
1C Program to implement Stack Operations Using Array
2C Program to read integers into an array and reversing them using pointers
3C Program to delete duplicate elements in an array
4C Program to calculate Addition of All Elements in Array
5C program to find Smallest Element in Array in C Programming
6C Program to find Largest Element in Array in C Programming
7C Program to reversing an Array Elements in C Programming
8Merging of Two arrays in C Programming
9Searching element in array
10copy all elements of an array into another array in C
11Program Insert element in an Array
12Program for deletion of an element from the specified location from Array
13Printing Array Elements in C Language
14C Program : Rading Array Elements
15One Dimensional Array All Programs

2-D Array Programs : C Programming

NoPrograms
1C Program to Check whether Matrix is Magic Square or Not ?
2C Program to Print Square of Each Element of 2D Array Matrix
3Program to find Transpose of Given Square Matrix
4C Program to find addition of Lower Triangular Elements in C Programming
5C program to calculate sum of Upper Triangular Elements in C
6C Program to evaluate Subtraction of two matrices ( matrix ) in C
7C program for addition of two matrices in C
8Addition of Diagonal Elements in Matrix
9Addition of All Elements in Matrix
10Accessing 2-D Array Elements In C Programming
11C Program to Find Inverse Of 3 x 3 Matrix in 10 Lines
12C Program to Multiply Two 3 X 3 Matrices

Algorithms Programs : C Programming

NoPrograms
1C Progran to Implement N Queen’s Problem using Backtracking
2C Program to implement prims algorithm using greedy method
3Program to implement knapsack problem using greedy method

Command Line Arguments Programs : C Programming

NoPrograms
1How to print all Arguments passed using Command Line in C !

Conversion Programs : C Programming

NoPrograms
1C Program to convert temperature from degree centigrade to Fahrenheit
2Decimal to Binary using Bitwise and operator
3Program to Convert Binary to Decimal number:Number System
4Program for Decimal to Hexadecimal Conversion in C >> Number System
5Program for Decimal number to Octal Conversion : Number System
6Program to Convert Decimal number into Binary : Number System :

Dos Programs : C Programming

NoPrograms
1How to print all Arguments passed using Command Line in C !
2C Program to Add two numbers using Command Line Arguments Parameters

Expressions Programs : C Programming

NoPrograms
1C Program to demonstrates binary expressions using floating-point arithmetic
2C Program to demonstrates binary expressions using interger arithmetic !

File Handling Programs : C Programming

NoPrograms
1C program to copy the contents of one file into another using fputc
2C Program to read last n characters from the file !
3C program to convert the file contents in Upper-case & Write Contents in a output file
4C Program to Compare two text/data files in C Programming
5C Program to Write on Data File and Read From Data File
6C Program to Copy Text From One File to Other File
7How to display same source code as output in c programming?

Electrical Programs : C Programming

NoPrograms
1C Programs Electrical Circuit Formulae Varification
2C Program To find equivalent capacitance of parallel combination of capacitive circuit
3C Program To find equivalent capacitance of series combination of capacitive circuit
4Program To find equivalent resistance of Parallel combination of resistive circuits
5Program To find equivalent resistance of series combination of resistive circuits

Graphics Programs : C Programming

NoPrograms
1Drawing Line in Graphics Mode : Line Function
2C Program to draw Inductive Coil using Graphical Function
3C Program to Draw Resistance using Graphics Function
4C Program to Draw PNP Transistor using Graphics Function
5C Program to Draw Eclipse using Graphics Function
6C Program to Draw NPN Transistor using Graphics Function
7C Program to Draw Capacitor using Graphics Function
8C Program to Draw a Triangle using Graphics Function
9Printing Text in Graphics Using Outtextxy Function
10First Turbo Graphics Program in C Language
11C Program to draw Op-amp Symbol Using Graphics Function
12C Program to display mouse pointer in textmode
13C Program to check if mouse support is available or not.
14Drawing Circle in Graphics Mode : Circle Function >> Graphics.h
Mouse Programs : C Programming
NoPrograms
1C Program to display mouse pointer in textmode
2C Program to check if mouse support is available or not.

Pointer Programs : C Programming

NoPrograms
1C Program to Swap Two Numbers / Variables using Pointer109">C Program to Print Value and Address of Variable of Pointer
2C Program to perform Stack Operations Using Pointer !
3C Program to compute sum of the array elements using pointers !
4C Program to count number of words digits and vowels using pointers in C Programming
5C Program to Find Length of the String using Pointer
6C Program to read integers into an array and reversing them using pointers
7C Program to Add Two Numbers Using Pointer !
8C Program to Calculate Size of Pointer in C Programming
9Pointer Program : Difference between two float Pointers
10Pointer Program : Difference between two integer Pointers
11Pointer Program : Increment Structure Pointer having far pointer as structure member
12Pointer Program : Incrementing Array of Float Pointer
13Pointer Program : Incrementing Double Pointer
14Pointer Program : Increment Integer Pointer
15Pointer Program : Declaring Pointer
16Pointer Program : Address operator in C
17C Program to calculate Area of Circle using Pointer
18C program to Accessing Value from Address using Pointer
19C Program to Access Address of Variable using Pointer

Pyramid Programs : C Programming

NoPrograms
1Pyramid Program in C Programming – Mirror Image of Right Angled Triangle666">How to write c program to print FLOYD’S triangle in C Programming ?
2Number Pyramid Pattern in C Programming
3Program Even Number Pyramid in C
4Print prime number Pyramid in C
5Print the Rectangle using Line and Special Symbols
6Number Pyramid in C Programming
7Program to Print Largest Number Pyramid
8Program to Print the Double Pyramid Pattern
9Program to Print Pyramid of Multiplication Tables
10Program to print 1-10 Numbers in Pyramid fashion
11C Program to Print Inverted Pyramid
12Print the Pattern of Binary Numbers (Pyramid)
13Program to Print this Right angled Pyramid in C using Nested Loops in C
14Index : Pyramid Programs in C Programming

Recursive Programs : C Programming

NoPrograms
1C Program to print Fibonacci Series using recursion !!662">C Program to Multiply two Matrices using Recursion !!
2C Program to calculate sum of numbers 1 to N using recursion
3Find Sum of Digits of the Number using Recursive Function in C Programming
4C Program to print Tower of Hanoi using recursion !!
5Find Factorial of Number Using Recursion

C Programs : Series

NoPrograms
1C Program to find exponent Power Series !!

C Programs : Sizeof Operator

NoPrograms
1C Program to Calculate Size of Structure using Sizeof Operator
2Pointer Program : Size of Pointer to Structure
3Pointer Program : Size of Integer Far Pointer
4Pointer Program : Size of Float Pointer
5Pointer Program : Size of Character Pointer
6Pointer Program : Size of Integer Pointer

C Programs : Sorting

NoPrograms
1C Program to sort array of Structure in C Programming
2C Program for sorting the list of Strings
3C Program to Implement Bubble Sort in C Programming
4Sorting Two Structures on the basis of any structure element and Display Information
5Program to Implement Insertion Sort in C Programming

C Programs : Stack

NoPrograms
1C Program to perform Stack Operations Using Pointer !
2C Program to implement Stack Operations Using Array
3C Program to Implement Stack Operations using Singly Linked List

C Programs : String Operations With using Library Function

NoPrograms
1C Program to Sort set of strings in alphabetical order using strcmp()
2C Program to Convert String to Integer !!
3Program to convert String into Uppercase Using Library Function
4Program to convert String into Lowercase Using Library Function
5Program to copy one string into other with using library function [ strcpy ]
6Program to Concat Two Strings with using Library Function : Strcat
7Find Length of String Using Library Function

C Programs : String Operations Without using Library Function

NoPrograms
1C Program to count number of words digits and vowels using pointers in C Programming
2C Program for sorting the list of Strings
3C Program to Find Length of the String using Pointer
4Write a C Program to Reverse Letter in Each Word of the Entered String
5C Program to Encode a String and Display Encoded String !
6C program to Delete all occurrences of Character from the String.
7C Program to Concat Two Strings without Using Library Function
8C Program to Find Substring Of String Without Using Library Function !!!
9C Program : Reverse String Without Using Library Function [ Strrev ]
10C Program to Compare Two Strings Without Using Library Function [Strcmp]
11C Program to Copy One String into Other Without Using Library Function.
12Check Whether Character is Lowercase or Not without using Library Function
13Check Whether Character is Uppercase or Not without using Library function
14C Program to Count number of Uppercase and Lowercase Letters
15Search occurrence of Character in String :
16With using User-defined Function Write a Program to Find Length of String
17Program to Find Length of String Without using Library Function

C Programs : Structure Concept

NoPrograms
1C Program to read and print name and other details of 50 students using Structure?
2C Program to sort array of Structure in C Programming
3C program to use structure within union & display the contents of structure elements
4C Program to Calculate Size of Structure using Sizeof Operator
5Sorting Two Structures on the basis of any structure element and Display Information

C Programs : Typical Programs

NoPrograms
1Calender Program in C Programming Language : Display Day of the month
2C Program to show swap of two no’s without using third variable
3How to write c program to count number of digits in number without using mod operator ?
4How to Input Password in C : Validation of User name
5How to write inline assembly language code inside C Program ?
6Accept Paragraph using scanf in C
7Print Hello word without using semicolon in C
8Nested Printf statements : Example 2
9Printf inside printf in C : Example 1
10C program to add reversed number with Original Number ?
11C program to reverse the digits of a number ? [ In 3 Steps ]
12How to Add Digits of the Number Using Single Statement ?
13Swap two numbers without using third variable and using XOR Operator in C Programming
14How to Add two numbers without using arithmetic Operators in C Programming ?
15How to Create Your Own Header File in C Programming ?
16How to write C Program Without using Main Function (in 3 ways) ?
17Swap / Interchange two variables [numbers] without using Third Variable
18How do i Return Multiple Values From a Function ?
19C Program to Create directory in C using Interrupts.
20How to use Interrupts in C Programming ?
21How to print 1-10 numbers without using Conditional Loop in C Programming ?