Jump to

v03-l2-codeOutput

What is the output of this code ?

#include <iostream>
using std::cout, std::endl;
int main() {
    {
        int i = 1;
    }
    int i; i += 1;
    cout << i << endl;
}

???