MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void main() { fun(); fun(); } void fun() { static int R = 10; R++; printf("%d ", R); } |
| A. | 10 11 |
| B. | 11 10 |
| C. | 12 11 |
| D. | 11 12 |
| E. | None of these |
| Answer» E. None of these | |