Practice ยท 3 of 4
Shadow Reading
Implement int shadow_value(void): an outer int v = 10; then an inner block declaring its own int v = 20; โ return the OUTER v after the block (so 10).
Difficulty: beginner
Press Submit to check your solution.
Back to lesson: Practice: Scope & Storage