

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> void main() { char *S = ""; do { printf("Krishana"); } while (S); } |
A. | S |
B. | "Krishana" one time |
C. | "Krishana" infinite times |
D. | Nothing |
E. | None of these |
Answer» D. Nothing | |