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