Suppose a global variable and local variable have the same name. Is it is possible to access a global variable from a block where local variables is defined?
Answer:
-No. It is not possible in C. It is always the most local variable that gets preference.