12. Program to Add Two Integers Get link Facebook X Pinterest Email Other Apps - August 26, 2015 void main(){ int a=10,b=20,c; clrscr(); printf("%d",a+b); getch();} Get link Facebook X Pinterest Email Other Apps Comments Unknown2:40 PM#include#includevoid main(){ int a,b,c;printf("enter two no");scanf("%d%d",&a,&b);c=a+b;printf("%d",c);getch();}ReplyDeleteRepliesReplyAdd commentLoad more... Post a Comment
#include
ReplyDelete#include
void main()
{
int a,b,c;
printf("enter two no");
scanf("%d%d",&a,&b);
c=a+b;
printf("%d",c);
getch();
}