C++1

PHOTO EMBED

Fri Sep 16 2022 08:44:31 GMT+0000 (Coordinated Universal Time)

Saved by @kodekutulisanku #c++

#include<iostream>
using namespace std;
int x = 1;
int main()
{
    int x = 2;
    {
        int x = 3;
        cout << ::x << endl;
    }
    return 0;
}
content_copyCOPY