MCQOPTIONS
Saved Bookmarks
| 1. |
Which is the longest scope in the following code? #include int x; int main() { int y; fun(); return 0; } void fun(){ int z; } |
| A. | x |
| B. | y |
| C. | z |
| D. | both a and b |
| Answer» B. y | |