int i=10; printf("%d%d%d",i,++i,i++); code example Example: "++i + ++i" explanation int i = 5; i = ++i + ++i; cout<<i;