MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include <stdio.h> void function(); int main() { static int q = 25; function(); } void function() { static int q; printf("%d", q); } |
| A. | 25 |
| B. | Compilation Error |
| C. | Runtime Error |
| D. | 0 |
| E. | None of these |
| Answer» E. None of these | |