1 extern int printf(const char * format, ... ); 2 main()3 int main() 4 { 5 printf("Hello, World\n"); 6 return 0; 7 } 8