$ cat zero.c #include int main() { printf("0 ** 0 == %d\n", 0 ^ 0); } $ ./zero 0 ** 0 == 0