Discussion :: Expressions
-
What will be the output of the program?
#include
Answer : Option D
Explanation :
The order of evaluation of arguments passed to a function call is unspecified.
Anyhow, we consider ++i, ++i are Right-to-Left associativity. The output of the program is 4, 3.
In TurboC, the output will be 4, 3.
In GCC, the output will be 4, 4.
Be The First To Comment