#include <stdio.h> int main() { int p1 = 10, p2 = 8; int p3; p3 = (p2++, p2); printf("%d\n", p3); return 0; }
9
Previous Question Next Question
Your comments will be displayed only after manual approval.