MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following code? int account=2; void main() { static int account; printf("%d",account); |
| A. | 2 |
| B. | Garbage value |
| C. | 0 |
| D. | Error |
| Answer» D. Error | |