#include <stdio.h> /* for input/output */

main() {
  char String[80];
  FILE *file;
  printf("Lab Session 6, Question 3.3\n"); /* Display program header */
  file = fopen("s6q2-3.out", "r");
  fscanf(file, "%s", &String);
  close(file);
  printf("\nfirst string of non-whitespace characters in file is: %s\n", String);
}

/* permissions assigned on first run:   -rw-r--r-- */
