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