MCQOPTIONS
Saved Bookmarks
| 1. |
Will the following C code compile without any error?#include <stdio.h> int main() { int n; { int n; for (n = 0; n < 12; n++); } } |
| A. | No |
| B. | Yes |
| C. | Depends on the C standard implemented by compilers |
| D. | All of above |
| E. | None of these |
| Answer» C. Depends on the C standard implemented by compilers | |