

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { int n = 0; for (; ; ;) printf("Hey... n"); printf("Hello... n"); } |
A. | Hey... |
B. | Hello... |
C. | Runtime Error |
D. | Compilation Error |
E. | None of these |
Answer» E. None of these | |