

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { int k = 0, L = 0; while (k < 10, L < 15) { k++; L++; } printf("%d, %d n", k, L); } |
A. | 10, 15 |
B. | 15, 10 |
C. | Compilation Error |
D. | Garbage value |
E. | 15, 15 |
Answer» F. | |