Stdle #35 · strings · 2026-07-11
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[] = "hi\0there"; printf("%s\n", s); return 0;}Strings
Stdle #35 · strings · 2026-07-11
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
#include <stdio.h>int main(void) { char s[] = "hi\0there"; printf("%s\n", s); return 0;}