Program Code:
#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;
}
To learn more about programming and coding visit our website. PDF study materials also available on our website.
Log on to: www.thecode11.com
