1 2 3 4 5 6 7 8 9 10
/* From Ted Unangst */ int a() { return 1; } int main() { int b = 0; a() + ++b; printf("b %d\n", b); return 0; }