Stdle #54 · arrays · 2026-07-30
What does this C snippet output?
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
#include <stdio.h>int main(void) { short s[8]; size_t n = sizeof s / sizeof s[0]; printf("%zu\n", n); return 0;}Arrays