1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #include <stdio.h> void main () { int n,i; n = 10 ; i = 1 ; while (n >= 1 &am...
print Series -1 2 -3 4 -5 6 -7........
1 2 3 4 5 6 7 8 9 10 11 12 13 #include <stdio.h> int main () { int s,i; for (i = 1 ,s = 1 ;i <= 10 ;i ++ ) ...
input from user and print factorial
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #include <stdio.h> int main () { int c, n, fact = 1 ; printf( "En...
Print Table of input nob from user
1 2 3 4 5 6 7 8 9 10 11 12 13 14 #include<stdio.h> int main () { int n,i = 1 ; printf( "Table of =" ); sc...
What is for loop
'for' loop:- for loop executed one or more statements for a specified number of times.This loop is a...
What is do-while Loop
'do-while' Loop:- do while is an iterative in c language. THis loop executes one or more ...
What is While loop
'while' Loop:- while loop is the simplest loop of c language. This loop executes one or more sta...
What is Loop
Loops:- A type of control structure that repeats a statements or set of statements is known as Looping structure.it is also...
How To Create Manny Folder At One Click
Create Many Folders For One Click Open Notepad Type MD Space 1 Space 2 Space 3 And Soo On And Save It Folder.Bat Now Open It And Fo...
What is Nested IF else Statement.
What is Nested IF else Statement Nested IF else Statement:- It is conditional statement which is used ...
What is Else IF Statement
What is Else IF Statement? Else if statement:- The "else if "statement in C is generally used when need...
What is IF else Statement.
What is IF else Statement? Ans:- IF else Statement:- C language also lets one ch...
What is IF Statement.
What is IF Statement? Ans: IF Statement:- If statement gives the user the choice of execuate...
Convert Temperature Fahrenheit to centigrade
A program Convert Temperature Fahrenheit to centigrade 1 2 3 4 5 6 7 8 9 #include<stdio.h> int main () { float ftemp,ctemp;...
Two location interchange its contents
A Program two location interchange its contents. 1 2 3 4 5 6 7 8 9 10 #include<stdio.h> int main () { int a,b; pr...
Input two nob from user print Sum.product,division and some of square(a^2+b^2
Input two nob from user print Sum.product,division and some of square=>a^2+b^2. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #inc...
Input distance in km from user convert it into Meter
Input distance in km from user convert it into Met er 1 2 3 4 5 6 7 8 9 10 11 12 #include<stdio.h> int main () { f...
A program 356 value print Reversal i.e 653
A program 356 value print Reversal i.e 653:- 1 2 3 4 5 6 7 8 9 10 11 12 13 #include<stdio.h> int main () { int n,...
Using % operator
A program Using % operator 1 2 3 4 5 6 7 8 9 10 11 12 #include<stdio.h> int main () { int n,a,b; n = 456 ; printf...
Swap without using third variable
A program swap without using third variable 1 2 3 4 5 6 7 8 9 10 11 12 13 #include<stdio.h> int main () { int ...
Swap using third variable
A program Swap using third variable 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #include<stdio.h> int main () { int a,b,t;...
Convert it into c program "a^3+b^3+c^3+ab"
A program Convert it into c program "a^3+b^3+c^3+ab" 1 2 3 4 5 6 7 8 9 #include<stdio.h> int main () { int a,b,...
Convert it into c program "a^2 + b^2 +ab =a*a+b*b+a*b".
A program Convert it into c program "a^2 + b^2 +ab and display its result. 1 2 3 4 5 6 7 8 #include<stdio.h> int main...
Convert it into c program "a+b^2 c=a+(b*b)*c"
A program Convert it into c program "a+b^2 c=a+(b*b)*c" 1 2 3 4 5 6 7 8 9 10 #include<stdio.h> int main ...
Input base and power is 4 print output
A program Input base and power is 4 print output. 1 2 3 4 5 6 7 8 9 10 #include<stdio.h> int main () {...
2^4=? print output
A program that 2^4=? print output on Screen 1 2 3 4 5 6 7 8 9 #include<stdio.h> int main () { int b,p,m; b = 2 ; p = 4...
Multiplication of three Variable
A Program Multiplication of three Variable and result print on Screen: 1 2 3 4 5 6 7 8 9 10 #include<stdio.h&g...
Dev C++ v 5.11
Dev C++ Free Software teachcoding.blogspot.com Dev-C++ is a full-featured IDE for the C,Cpp programming language. It uses Mingw port o...
Input Roll,Marks,Grade and print on screen
A program Input Roll,Marks,Grade and print on screen: 1 2 3 4 5 6 7 8 9 10 11 12 13 #include<stdio.h> int main ()...
Calculate and print "6+4=10"
Calculate and print "6+4=10" result on screen 1 2 3 4 5 6 7 8 #include<stdio.h> int main () { int a,b,s; a =...
Calculate and print "6*4-9=?"
A program Calculate and print "6*4-9=?" the result on screen. 1 2 3 4 5 6 7 8 #include<stdio.h> int main () ...
Enter any two nob and print
Enter any two nob and print Credit goes to: Kamran Gee 1 2 3 4 5 6 7 8 #include<stdio.h> int main () { int a,b; prin...
Sum,Difference,Multiplication all in one
Sum,Difference,Multiplication all in one 1 2 3 4 5 6 7 8 9 10 #include<stdio.h> int main ()...
Sum of three Variable
Sum of three variable: 1 2 3 4 5 6 7 8 9 10 #include<stdio.h> int main () { int a,b,c,s; a = 8 ; b = 6 ; c = 4...
Program Find Difference of variable
Find Difference of two variable: 1 2 3 4 5 6 7 8 #include<stdio.h> int main () { int a,b; a = 6 ; b = 2 ; printf( "...
C program using"%d"
program using"%d" & declare value:- 1 2 3 4 5 6 7 8 #include<stdio.h> int main () { int a; a = 4 ; printf(...
C program using "\n"
C program using "\n" 1st Program:- 1 2 3 4 5 #include<stdio.h> int main () { printf( "* \n ** \n *** \...
C programs List
In this post you can easily find C programs in this list you can Select Program and then source Code are there if any program are not...
Request Zone
Request zone Here you can request for C program,C++ program,Opp,Algorithm,Data structure,Also Software,android games,Apps,Books ...
Download Window 7 Full Activated
Cue Club (full version) free download
Cue Club (full version) free download Cue Club Cheat Codes: Enter any Cue Club chat room and type these fun ch...
Internet download manager with Register Free Download
For Latest Version IDM Download Click here Download latest version Older version Older Version IDM 6.27: Build 3 ...