Computer Science, asked by krish2196, 10 months ago

c program for addition?​

Answers

Answered by Anonymous
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