<< is a function, namely something like ostream& operator<<(ostream& lhs, RhsType rhs).
cout << a;
is equivalent to
operator<<(cout, a);
The function returns lhs, that is return lhs, - so in the above examples cout is returned.
So your example
cout << i << ++i << i++ ;
is equivalent to
operator<<(operator<<(operator<<(cout, i), ++i), i++);
Correction C++ does not specify which order the increment operations are performed. It seems logical to you and me that the most nested would go first, but as far as the compiler is concerned it is free to execute the increment whenever it likes. It is the same behaviour as a function like myFunc(cout, i++, ++i, i) where the order in which the increments are evaluated is undefined. The only thing guaranteed is the functions are evaluated inside to outside.
<<is definitely called before the second, which is definitely called before the third. But that says nothing about the order in which their arguments are evaluated, so there is no sequence point there(between arguments). – Benjamin Lindley Jun 7 '12 at 4:27exact. The answer may be the same, but the question certainly isn't. Is it reasonable to expect someone who needs to ask this question to recognized the linked question as an answer? I don't think so. – Zero Jun 7 '12 at 7:53