

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