InterviewSolution
Saved Bookmarks
| 1. |
How can we refer to the global variable if the local and the global variable names are same? |
|
Answer» We can apply scope resolution operator (::) to the for the scope of global variable. |
|