void main()
{
int a=10;
cout<<a++<<a++<<a++;
}

이것의 결과값은 121110 입니다.

101112 가 아니고 121110 이유가 뭐에요?