home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libc / ansi / stdio / printf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-20  |  101 b   |  10 lines

  1. #include <stdio.h>
  2.  
  3. int
  4. main(void)
  5. {
  6.   printf("hello");
  7.   printf(" there\n");
  8.   return 0;
  9. }
  10.