

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { while () printf("Executed In while loop "); printf("Executed After loop n"); } |
A. | Executed After loop |
B. | Compilation Error |
C. | Infinite loop |
D. | Executed In while loop |
E. | None of these |
Answer» C. Infinite loop | |