Write a program to add two numbers
in computer
Answers
Answered by
0
"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);
Answered by
0
Answer:
a=4
b=3
sum=a+ b
print(sum)
Output
7
Explanation:
Similar questions