/* Note:Your choice is C IDE */ #include "stdio.h" int test2(); void main() { test2(); int test1(); //如果提前一行就能运行,我觉得也就这点区别了,先声明再使用。 } int test2() {printf("test2\n"); test1(); } int test1() {printf("test1\n"); }