/* * CS 161-020, Lecture 13, Winter 2020 * Scope practice 2 - what does this code print? * Author: Kiri Wagstaff * Date: February 5, 2020 */ #include #include using namespace std; int main() { for (int z = 0; z < 3; z++) { cout << z << endl; } cout << z << endl; return 0; }