

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