Stdle #46 · storage · 2026-07-22
What does this C snippet output?
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
#include <stdio.h>void run(void) { static int calls = 0; int local = 0; calls++; local++; printf("%d %d\n", calls, local);}int main(void) { run(); run(); run(); return 0;}Storage