write the program to print the output?
Answers
Answered by
0
Answer:
Output
Enter a integer: 25
You entered: 25
In this program, an integer variable number is declared.
The printf() function displays Enter an integer: on the screen. Then, the scanf() function reads an integer data from the user and stores in variable number.
Finally, the value stored in the variable number is displayed on the screen using printf() function.
Check out these related
Similar questions