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 ()...
A blog about programming languages and this Blog specially Create for learning languages like C language,C++ Language, Data Structure and Algorithm.
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 *** \...
My first program in C
My first program in C language:- //My first program in C # include < stdio.h > # include < conio.h > int main ( ) { prin...
Basic Structure Of C language program
A C language program has following basic structure: Preprocessor directives Main function Curly braces body Statement Basic struct...
Why we use C language?
Why we use C? C language is very powerful high level language and widely use language.some of popular language are C++, Java, Ada, BASIC...
Synopsis of C Languages.
C language is general purpose high level language. Design by originally " Dennis M. Ritchie" at AT&T Bell Laboratories in ...