Stdle #66 · arrays · 2026-08-11
What does this C snippet output?
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
#include <stdio.h>int main(void) { char a[5] = {0}; printf("%zu\n", sizeof a); return 0;}Arrays
Stdle #66 · arrays · 2026-08-11
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
#include <stdio.h>int main(void) { char a[5] = {0}; printf("%zu\n", sizeof a); return 0;}