← Back to archive

Stdle #20 · arrays · 2026-06-26

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[2][3] = {{1, 2, 3}, {4, 5, 6}};
printf("%zu\n", sizeof a[0] / sizeof a[0][0]);
return 0;
}
Arrays
4 attempts left

Answer & explanation