

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> void main() { int p1 = 12; int p2 = (p1++, p1++); printf("%d %d n", p2, p1); } |
A. | 12 13 |
B. | 13 14 |
C. | 14 15 |
D. | Compilation Error |
E. | None of these |
Answer» C. 14 15 | |