Computer Science, asked by rxharrisns, 5 months ago

7. Write a program to enter 2 number and find sum and product ​

Answers

Answered by abhijayperiye200722
0

Answer:

THIS ANSWER WILL HELP U..

Explanation:

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

Similar questions