home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / qc_prog / chap03 / strings.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-04-06  |  214 b   |  9 lines

  1. /* strings.c -- shows two ways to print */
  2. /*              a string with printf()  */
  3.  
  4. main()
  5. {
  6.     printf("This uses a string literal by itself\n");
  7.     printf("%s", "This plugs the literal into %s\n");
  8. }
  9.