Created
October 9, 2020 19:07
-
-
Save creativ3lab/722a336e91022cf88faccedbc173bd74 to your computer and use it in GitHub Desktop.
Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string str="global scope"; | |
void main() | |
{ | |
string str="main scope"; | |
if (true){ | |
string str="if scope"; | |
cout << str << endl; | |
} | |
cout << str << endl; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment