MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following program? #include< stdio> int main() { static int a = 3; printf( %d , a --); return 0; } |
| A. | 1 |
| B. | 2 |
| C. | 3 |
| Answer» D. | |