#include <stdio.h> void main() { int p1 = 12; int p2 = (p1++, p1++); printf("%d %d\n", p2, p1); }
13 14
Previous Question Next Question
Your comments will be displayed only after manual approval.