1 /* 2 * hello3.c 3 * 1. C-Programm mit printf-Parameter 4 * klin, Thu Oct 21 14:28:58 1999 5 */ 6 7 #include <stdio.h> 8 9 void main(void) 10 { 11 printf("%s\n", "Hallo Welt!"); 12 13 } /* main() */