C Program : Addition of two numbers Add Comment #include<stdio.h> #include<conio.h> void main(){ int a,b,c; clrscr(); a = 10; b = 20; c = a+b; printf("The Sum of a & b is %d",c); getch(); } For more you can see videos: