#include int main(int argc, char *argv[]) { { int x; x = 3.14; // int x is ALSO inside new scope cout << "x = " << x << "\n"; } cout << "x = " << x << "\n"; }