chongye89 发表于 2013-1-26 13:35:45

C的一点趣事

main.c

#include <stdio.h>#include <string.h>int main(){    #include "a.c"    printf("file main.c");} a.c

#include <stdio.h>#include "main.c"printf("file a.c"); 就这两个文件,编译会陷入循环。看来C/C++真的是“coders should be trusted”
页: [1]
查看完整版本: C的一点趣事