Lesson 3: Input with scanf & debugging
Until now our programs only talked; now they'll also listen. scanf("%d", &age); reads a number the user types into the variable — the & hands scanf the variable's address (we'll understand it deeply in the pointer lessons). The standard pattern: a printf that shows a prompt, then a scanf that reads.