mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

Cのincludeは実質的にその場所に対象のファイルの内容をぶちまげるものだと理解してるんだけど、トップレベルじゃないとこに書いたらどうなるんだろな

zunda

これはきもいなあw

$ cat main.c
<stdio.h>

int main(void) {
fputs(
"answer.txt"
"\n", stdout
);
return 0;
}
$ cat answer.txt
"42"
$ gcc -Wall main.c
(警告なし)
$ ./a.out
42

@Azukyuda こんな小さなプログラムなのに!