Stdle #51 · 2026-07-27
What does this log?
Read the snippet and type its exact console output. You get 4 attempts — each wrong guess unlocks a hint.
#include <stdio.h>int main(void) { int i = 1, j = 1; int big = (i++ > 0) || (j++ > 0); printf("big=%d i=%d j=%d\n", big, i, j); return 0;}Quirks