← Back to archive

Stdle #69 · numbers · 2026-08-14

What does this C snippet output?

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

#include <stdio.h>
int main(void) {
char a = 'a';
char b = a - 32;
printf("%c%c\n", a, b);
return 0;
}
Numbers
4 attempts left

Answer & explanation