← Back to archive

Stdle #74 · strings · 2026-08-19

What does this C snippet output?

A past puzzle — fully playable. 4 attempts, hints on wrong guesses.

#include <stdio.h>
int main(void) {
char c = 'A' + 1;
printf("%d\n", c);
return 0;
}
Strings
4 attempts left

Answer & explanation