MCQOPTIONS
Saved Bookmarks
| 1. |
Point out the error in the following program. #include int main() { void v = 0; printf("%d", v); return 0; } |
| A. | Error: Declaration syntax error 'v' (or) Size of v is unknown or zero. |
| B. | Program terminates abnormally. |
| C. | No error. |
| D. | None of these. |
| Answer» B. Program terminates abnormally. | |