1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#include "stdio.h" int main() { struct A {}; int i; int g(){}; int f() { struct A a; int j = (--i, i ? 0:1); int x; for(x = 42; x > 0; --x) { i += g()*4 + 32; } } return 0; }