// scope.cpp // Test program showing simple scope // 1/28/03, Ray S. Babcock // #include using namespace std; int main(void) { int x(20); { cout << x << endl; int x(100); cout << x << endl; } cout << x << endl; }