write a program to addition of two numbers Get link Facebook X Pinterest Email Other Apps January 31, 2021 #include<stdio.h> #include<conio.h> void main() { int a,b,c; clrscr(); printf("enter the value of a and b"); scanf("%d%d",&a,&b); c=a+b; printf("c=%d",c); getch(); } Read more