Program to find sum of two numbers
C Programming Language Overview of C Language (Article) Overview of C Language (Program)
1217Program:
#include
#include
void main()
{
int a,b,s;
printf("Enter two no: ");
scanf("%d%d",&a,&b);
s=a+b;
printf("sum=%d \n",s);
}
Output:
Enter two no: 5 10 sum=15 Press any key to continue . . .
Explanation:
We take two number 5 and 10
output=(5+10)=15
This Particular section is dedicated to Programs only. If you want learn more about C Programming Language. Then you can visit below links to get more depth on this subject.