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