write the program to add two number using input method
Answers
Answered by
6
Explanation:
To read the input numbers we are using scanf() function and then we are using printf() function to display the sum of these numbers. The %d used in scanf() and printf() functions is the format specifier which is used for int data types in C programming.
Similar questions