In the below program is the addition of two numbers, the user is need to enter two numbers and the input is fetched using the pre-defined function scanf() and stored in the variables a and b. Then, the variables a and b are added and the result is stored in the variable c.
Below is the addition two numbers program in C:
#include<stdio.h> #include<conio.h> void main() { int a,b,c; clrscr(); printf("\n\n\t\t\tADDITION\n\nEnter the two number: "); scanf("%d%d",&a,&b); c=a+b; printf("\nSum= %d",c); getch(); }