logoISU  

CS256 - Principles of Structured Design

Fall 2021

Displaying ./code/sternflCode/scanfExample.c

#include<stdio.h>

int main() {
  int x;
  printf("Enter a small integer ");
  //scanf("%d\n", &x);  //does not work 
  scanf("%d", &x);
  printf("The number stored in x is: %d\n", x);

  return 0;
}