- #include
- #include
- void main(){
- int x=0,y=0,result=0;
- clrscr();
- printf("enter first number:");
- scanf("%d",&x);
- printf("enter second number:");
- scanf("%d",&y);
- result=x+y;
- printf("sum of 2 numbers:%d ",result);
- getch();
- }

Loading

Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Md NayeemPosted Aug 3, 2017, 10:09 AM
Sundaram SubramanianPosted Aug 3, 2017, 7:25 AM