

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { int k = 2; int L = k++ + k; printf("%d n", L); } |
A. | Compilation Error |
B. | Runtime Error |
C. | 2 |
D. | 5 |
E. | None of these |
Answer» E. None of these | |