The O/p comes out to be x=2,y=1,z=1 which doesnt agree with the operator precedence. I was running this on Turbo c++ compiler:
void main()
{
int x,y,z,q;
x=y=z=1;
q=++x || ++y && ++z;
printf("x=%d y=%d z=%d",x,y,z);
}
|
The O/p comes out to be x=2,y=1,z=1 which doesnt agree with the operator precedence. I was running this on Turbo c++ compiler:
| |||||
feedback
|
|
Operator precedence does not in any way determine the order in which the operators are executed. Operator precedence only defines the grouping between operators and their operands. In your case, operator precedence says that the expression
is grouped as
The rest has absolutely nothing to do with operator precedence at all. The rest is determined by the semantics of each specific operator. The top-level operator in this case is This is exactly what happens in your case. The left-hand side is
The right-hand side of | |||||||
feedback
|
|
Actually the result is in complete accordance with standard C. The logical or operator ( So starting at | |||||||||||
feedback
|
Makes all the variables = 1
Since Thus, | |||
feedback
|
|
Logical && (AND) and || (OR) operators are subject to Short-Circuit. "Logical operators guarantee evaluation of their operands from left to right. However, they evaluate the smallest number of operands needed to determine the result of the expression. This is called "short-circuit" evaluation." Thus, for logical operators always evaluated as (no matter || or &&) left to right. And as previously mentioned, precedence here only determines who takes who. Then left to right rule;
hope that helps more clear. | ||||
|
feedback
|