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

  1. main()    /* sprintf.c -- illustrates sprintf() */
  2.  
  3. {
  4.     int a,b;
  5.     char c[80];
  6.     sprintf(c,"%s","this is a string");
  7.     puts(c);
  8.  
  9.     puts("\nCorrect answer: 'this is a string' is displayed.");
  10. }
  11.