home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / GETS.C < prev    next >
Encoding:
Text File  |  1985-01-24  |  173 b   |  9 lines

  1. main()    /* gets.c -- demonstrates gets() */
  2. {
  3. char i[50];
  4. printf("Type a string of characters.\n\n");
  5. gets(i);
  6. printf("Here is the string you typed:\t%s\n\n",i);
  7. }
  8.  
  9.