Addition of two numbers using C.


#include<stdio.h>

#include<conio.h.>

int main()

{

int a, b, sum;

a=5;

b=6;

sum=a+b;

printf("sum=%d",sum);

getch();

return 0;

}



To run:










Output:




No comments:

Post a Comment

theengineerschoice01@gmail.com