Computer Science, asked by geethachandrahas10o, 3 months ago

Write a program to accept number and display

if it ends with 7.​

Answers

Answered by Matrix7777
0

Answer:

This number is stored in the number variable. 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);

Similar questions