`

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”
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics