Stdle #39 · strings · 2026-07-15
What does this C snippet output?
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
#include <stdio.h>int main(void) { char s[] = "abc"; printf("%c%c%c\n", s[2], s[1], s[0]); return 0;}Strings