#include void main(void) { int a1 = 10; int b1 = a1++; printf("%d %d\n", a1, b1); int a2 = 10; int b2 = ++a2; printf("%d %d\n", a2, b2); }