A Program to print 2 integer value.
#include<stdio.h>
#include<conio.h>
main()
int a,b,add;
a=5;
b=3;
add=a+b;
printf(“ Addition=%d”,&add);
getch();
Brief description of above program,
#include: it includes library function/import predefine libraries.
<stdio.h>: standard input output header file.
main(): it is first function of C programming. Every C programme must have main() function.
int a,b,add: a,b,add are declared as integer(int) type variables.
add=a+b: this statement sum a and b and store result in add variable.
printf: printf is a function to print output.
getch(): also a function, it is used to return program window to console.