Computer Science, asked by Zedman, 5 months ago

Write a program to enter any two numbers and their sum

Answers

Answered by itzcottoncandysneha
3

printf("Enter two integers: "); scanf("%d %d", &number1, &number2); Then, these two numbers are added using the + operator, and the result is stored in the sum variable. Finally, the printf() function is used to display the sum of numbers. printf("%d + %d = %d", number1, number2, sum);

plss mark as brainliest

Answered by petervilot
0

Answer:

The above answer is correct

Similar questions