Computer Science, asked by anki4011, 1 year ago

Write a program to find the addition of two numbers in c.

Answers

Answered by rgnagre197230
0

Wait for answer just time

Answered by SharmaShashtra
1

#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