E01 Answer


a=1     b=2

Comments: This is the most common situation with block scope. The identifiers a and b are declared at the start of the block (the body of the function main()) and are visible throughout that block (and visible nowhere else).