Stdle #16 · arrays · 2026-06-22
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[] = {100, 200, 300}; printf("%d\n", 0[a] + 2[a]); return 0;}Arrays