1 /* 2 * Test program for C compiler; if this doesn't compile, the 3 * C compiler is seriously broken. 4 */ 5 6 #include <stdlib.h> 7 #include <stdio.h> 8 main(void)9 int main(void) 10 { 11 printf("Hello, World!\n"); 12 return 0; 13 } 14