Noor-Snovar
Showing posts with label
C Source Code
.
Show all posts
Showing posts with label
C Source Code
.
Show all posts
Monday, November 30, 2015
A program to sum of two integer values.
#include < stdio .h >
#include < conio .h >
void main()
{
int a,b,c;
a=20;
b=10;
c=a+b;
printf("sum of a & b is = %d",c);
}
Answer is:
30
Older Posts
Home
Subscribe to:
Posts (Atom)