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

  1. /* oneline.c -- shows how printf() continues  */
  2. /*              on the same line              */
  3.  
  4. main()
  5. {
  6.     printf("All displayed on");
  7.     printf("the same line, with no space");
  8.     printf(" unless specified.");
  9.             /* note added space in line above */
  10. }
  11.