V(I(C()));
C() creates a temporary which persists till the completion of the full expression, and the completion of the full expression is ; (i.e the semicolon). That is why you see that output which is in my opinion is well-defined.
Section ยง12.2/3 from the Standard reads,
[...] Temporary objects are destroyed as the last step in evaluating
the full-expression (1.9) that (lexically) contains the point where they were created. This is true even if that evaluation ends in throwing an exception.
Just to emphasize, in this example the lifetime of the temporary has nothing to do with the reference or const reference parameter of function I(). Even if the signature of I() is:
int I(C c); //instead of : int I(const C & c);
the temporary would persist till the completion of the full expression and you would see exactly the same output.
See this: http://www.ideone.com/RYWhy
C()is embedded in isI(C()). The full line is an expression statement. – BCS Apr 20 '11 at 16:05