c program for addition?
Answers
Answered by
6
Answer -
- #include<stdio.h>
- #include<conio.h>
- void main ()
- {
- int a,b,sum;
- clrscr();
- printf("enter any two nom");
- scanf("%d%d",&a,&b);
- sum= a+b;
- printf("sum=%d",sum);
- getch();
- }
Hope it will help you
Similar questions