Possible Duplicate:
Undefined Behavior and Sequence Points
Pleae explain the behaviour of following statements
int b=3;
cout<<b++*++b<<endl;
How will it be calculated?
Pleae explain the behaviour of following statements
How will it be calculated?
| |||||||||||||
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
The behavior here is undefined. See this question Relevant standard quote:
The most common sequence point is the end of a statement. Also worth noting from the standard:
| |||||||||
feedback
|
|
The standard says this is undefined. The compiler is free to evaluate the statements in any order is sees fit as long as it follows the operator precedence rules. This results in UB:
| |||
|
feedback
|
|
The behavior will be undefined as told by others. The output depends upon the implementation of compiler. But as per the standard it should be undefined. | ||||
|
feedback
|
|
AS this is undefined behaviour, one can't tell the end result. The result depends on the implementation. | |||
|
feedback
|
|
Undefined behavior, Compiler is free to evaluate this expression in any order because of the same precedence of the operators. Consider using
instead | |||||
feedback
|