InterviewSolution
Saved Bookmarks
| 1. |
Suppose a global variable and local variable have the same name. Is it possible to access a global variable from a block where local variables are defined? |
|
Answer» No. This isn’t possible in C. It’s ALWAYS the most local VARIABLE that GETS preference. |
|