x = 1;
std::cout << ((++x)+(++x)+(++x));
I expect the output to be 11, but it's actually 12. Why?
I expect the output to be |
|||||||||||||||||||||
|
|
We explain it by expecting undefined behaviour rather than any particular result. As the expression attempts to modify x multiple times without an intervening sequence point its behaviour is undefined. |
|||||||||||||||||||||
|
|
As others have said, the C and C++ standards do not define the behaviour that this will produce. But for those people who don't see why the standards would do such a thing, let's go through a "real world" example:
There's nothing wrong with calculating Where evaluations have side effects, different evaluation orders can affect the result. If the standard does not define the behaviour, do not rely on it. |
|||||||||||||||
|
|
This is actually undefined. C++ doesn't define explicitly the order of execution of a statement so it depends on the compiler and this syntax shouldn't be used. |
|||
|
|
The code snippet will invoke Undefined behavior in both C/C++.Read about Sequence Point from here. |
|||
|
|
|
Try putting in |
||||
|
|