home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / samples / hello / hello.c next >
Encoding:
C/C++ Source or Header  |  1993-11-13  |  101 b   |  7 lines

  1. #include <stdio.h>
  2. int main()
  3. {
  4.   printf("Hello!  This is the test program.\n");
  5.   return 0;
  6. }
  7.