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

  1.     main()    /* puts.c -- illustrates simple use of puts() */
  2.     
  3.     {
  4.     puts("Type a string up to 80 characters and get it back.");
  5.     char x[80];
  6.  
  7.     gets(x);
  8.     printf("\n\n");
  9.     puts(x);
  10.     }
  11.