Code:
#include<stdio.h>
int main()
{
int j = 7, i = 4;
j = j || ++i && printf("you can");
printf("%d %d",i,j);
return 0;
}
Output: 4 1
- The precedence of prefix operator is higher than logical operators.
- Logical AND (&&) and Logical OR (||) constitute sequence points and therefore guarantee a particular order of evaluation for their operands.
- In Logical AND(&&) if first operand evaluates to false than second will not be evaluated and In Logical OR(||) if first operand evaluates to true than second will not be evaluated.
- The complete expression is evaluating to true ,therefore j is 1 .
Doubts:
Why the first rule is not followed here. shouldn't it be correct
j=(j||((++i) &&printf("you can")));and therefore value of i becomes 5, in the printf statement.Why the general precedence rules are violated here.
If 2nd is not correct, than if this is done internally
j=((j||++i)&&printf("you can"));than ++i will not be evaluated but printf("you can"); is evaluated and it should print "you can" on the console, as per my knowledge printf returns number of characters printed on the screen and here as it returns 7 than only the expression is evaluating to true. But there is no "you can" printed on the screen than how is it becoming true?
This code is compiled on a 32 bit machine. Compiler is gcc(4.3.4). It's a C code.
Pl. correct me if I am wrong, or missing something in order to evaluate this statement correctly, which can solve my both doubts.
Thanks.