

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