Computer Science, asked by shubbe555, 10 months ago

write a program for two number addition in c language​

Answers

Answered by aryansingh754
3

#include<stdio.h>

int main()

{

int a, b, c;

printf("Enter two numbers to add\n");

scanf("%d%d", &a, &b);

c = a + b;

printf("Sum of the numbers = %d\n", c);

return 0;

}

Similar questions