home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / tcpp / examples / hello.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-09  |  121 b   |  14 lines

  1. /*    HELLO.C -- Hallo, Welt */
  2.  
  3. #include <stdio.h>
  4.  
  5. int main()
  6. {
  7.     printf("Hallo, Welt\n");
  8.     return 0;
  9. }
  10.  
  11.  
  12.  
  13.     
  14.