

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { int n = 0, L = 0; while (Read: n < 25) { n++; while (L < 15) { printf("Ajit"); goto Read; } } } |
A. | Compilation Error |
B. | Garbage value |
C. | Ajit |
D. | Runtime Error |
E. | None of these |
Answer» B. Garbage value | |