InterviewSolution
Saved Bookmarks
| 1. |
Consider the following C program, which variable has the longest scope?int a;int main(){int b;// ..// ..}int c;(A) a(B) b(C) c(D) All have same scope |
| Answer» | |