0
2
GGGiovanny Gongora
The integer entered by the user is stored in a variable and printed on the screen
#include <stdio.h>
int main() {
int number;
printf("Enter an integer: ");
// reads and stores input
scanf("%d", &number);
// displays output
printf("You entered: %d", number);
return 0;
}