output of print INT
(15.7)
Answers
Answered by
0
Answer:
hope it helps
Explanation:
printf("Enter an integer: "); scanf("%d", &number); Finally, the value stored in number is displayed on the screen using printf() . printf("You entered: %d", number);
Answered by
0
Answer:
for integers print(round(5)) # for floating point print(round(15.7)) # even choice print( round(7.3)). Output: 5 16 7. Pictorial Presentation:.
Similar questions