← Back to archive

Stdle #11 · arrays · 2026-06-17

What does this C snippet output?

A past puzzle — fully playable. 4 attempts, hints on wrong guesses.

#include <stdio.h>
int main(void) {
int a[3][3] = {{1}, {2}};
printf("%d %d %d\n", a[0][1], a[1][2], a[2][0]);
return 0;
}
Arrays
4 attempts left

Answer & explanation