home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / list1415.c < prev    next >
C/C++ Source or Header  |  1993-10-16  |  189b  |  12 lines

  1.  /* Can be used to demonstrate redirection of stdin and stdout. */
  2.  
  3.  #include <stdio.h>
  4.  
  5.  main()
  6.  {
  7.      char buf[80];
  8.  
  9.      gets(buf);
  10.      printf("The input was: %s", buf);
  11.  }
  12.