MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following code? #include< stdio.h> int main() { extern int a; static char j = ‘E’; printf(“%c %d”, ++j, ++a); return 0; } |
| A. | E 2 |
| B. | F 1 |
| C. | F Garbage |
| D. | F 0 |
| Answer» C. F Garbage | |