According to C ++ 03 Standard 1.9 / 5
The corresponding implementation, executing a well-formed program, should provide the same observable behavior as one of the possible sequences of execution of the corresponding instance of an abstract machine with the same program and the same input.
I do not get "like one of."
If I have a specific program and a specific input, and my program does not contain undefined behavior, why can the observed behavior change? What is meant by “one possible execution sequence”?
source
share