Cのちょっとしたエピソード
main.c
a.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");
この2つのファイルについて、コンパイルはループに陥ります.C/C++は本当に「coders should be trusted」のようです