ふとイヤなコードを思いつきました。
#include <stdio.h> __attribute__((constructor)) int main() { static int i = 0; if (i) puts("world!"); else i = puts("hello"); }
実行結果。
i@u ~/test> ./a.out hello world!
ふとイヤなコードを思いつきました。
#include <stdio.h> __attribute__((constructor)) int main() { static int i = 0; if (i) puts("world!"); else i = puts("hello"); }
実行結果。
i@u ~/test> ./a.out hello world!