Stdle #21 · strings · 2026-06-27
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[] = "a\tb"; printf("%zu\n", strlen(s)); return 0;}Strings