Stdle #6 · 2026-06-12
What does this log?
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
#include <stdio.h>int main(void) { int p = 1; for (int i = 1, j = 6; i < j; i++, j--) p *= 2; printf("%d\n", p); return 0;}Iteration