

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