1 #include <stdio.h> 2 3 int main() 4 { 5 /*这是个hello world*/ 6 /*输出是printf,不是print*/ 7 8 printf("Hello world\n"); 9 10 11 }