Computer Science, asked by shahad1932, 11 months ago

write a program add two number in C language ​

Answers

Answered by yashna009
2

Explanation:

#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);

Similar questions