Write a C-Program to declare and initialize two integer numbers of your choice and find their sum.
Answers
Answered by
5
Answer:
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);
Explanation:
PLEASE FOLLOW ME AND MARK AS BRAINLIST ANSWER
Similar questions