The question is:
int z, x=5, y=-10 ,a=4, b=2;
z = x++ - --y * b / a;
Just wanted to know the output and how --y will work for the negative value of 'y'. What will be the precedence of solving this?
|
The question is:
Just wanted to know the output and how --y will work for the negative value of 'y'. What will be the precedence of solving this? |
||||
| show 4 more comments |
Unlike y, x keeps it's value because in suffix notation the operator returns the original value not the modified one. (Someone else linked the operator precedence page so I won't) |
|||
|
|
|
It will be evaluated based on the Operator Precedence or "Order of Operations" - http://en.wikipedia.org/wiki/Operators_in_C_and_C%2B%2B#Operator_precedence |
|||
|
|
|
These two are equivelent according to Order of operations
|
|||
|
|
|
for example:
or
and
Notice in the last example that it is still 2 + 3. That is because the Knowing this, just apply your normal order of operations
That's my thought process for this: I interperet the values of |
|||||
|
|
The precedence of the operations is
IOW,
However... Note that precedence is not the same thing as order of evaluation. Each of the individual expressions |
|||
|
|
yhas anything to do with it? – jrok Sep 14 '12 at 18:58