int x = 15;main(){ int x = 60; print("\n%d", x);}
Whenever there is a conflict between local and global variable, the local variable wins. So In this question local variable gets priority over global.
Previous Question Next Question
Your comments will be displayed only after manual approval.