Computer Science, asked by aishaakbar, 7 months ago

Write a program to print the sum of two given numbers.​

Answers

Answered by vikramkumar64296
0

Answer:

Addition of two numbers in C

int main() { int x, y, z;

printf("Enter two numbers to add\n"); scanf("%d%d", &x, &y);

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

Answered by dk3609447
2

Answer:

learn how to do it . it's simple one

Attachments:
Similar questions