Saved Bookmarks
| 1. |
Write the program to add two number using input method |
|
Answer» ong>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. |
|