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