1708089268

[Challenge] what the following program written in c does?


```c #include <stdio.h> int main() { int num1, num2, sum; printf("Please enter tow integers: "); scanf("%d %d", &num1, &num2); sum = num1+num2; printf("%d %d = %d", num1, num2, sum); return 0; } ``` leave your answer in the comments.

(2) Comments
JavaJuggler
JavaJuggler
0

@Awschult your answer is right! i've noticed that more and more hobbyists are becoming interested in the C language.


Awschult
Awschult
0

Given two integers, provided by the user, the program prints the sum of the integers back to the user.Also, you have a typo in the print