if is it so what will be the output of following program.
#include<stdio.h>
int main()
{
int i=-3, j=2, k=0, m;
m = ++i || ++j && ++k;
printf("%d, %d, %d, %d\n", i, j, k, m);
return 0;
}
output is ** -2 2 0 1 ** under gcc but how ?
|
if is it so what will be the output of following program.
output is ** -2 2 0 1 ** under gcc but how ? |
|||||||
|
|
Precedence determines grouping of operands and operators; it does not determine order of evaluation. The |
|||
|
|
|
|
|||||||||
|
|
That's because logical operators do short-circuit evaluation. As soon as the result is known, no more evaluation is done. In your case, as What happens with "precedence" is this: to calculate the result of the If the right hand side needed to be evaluated the |
||||
|
|