MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following program? #include < stdio> static int y = 1; int main() { static int z; printf( %d %d , y, z); return 0; } |
| A. | Garbage value |
| B. | |
| C. | C. |
| D. | D. |
| Answer» D. D. | |