Stdle #27 · conversions · 2026-07-03
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("%c\n", c); return 0;}Conversions
Stdle #27 · conversions · 2026-07-03
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
#include <stdio.h>int main(void) { char c = 'A' + 1; printf("%c\n", c); return 0;}