OR and AND operation in C

左心房为你撑大大i 提交于 2019-12-19 03:10:22

问题


I have a doubt in the program below.

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;
}

I get the output as -2 2 0 1.

In OR operation if 1st value is true then it won't evaluate the 2nd one so i = -2 and j =2. Then comes the AND operation . It will check for both the value to be true.So if k = 1 then m = 1. So the output should be -2 2 1 1. I run and check and got output as -2 2 0 1 but I could not understand how.


回答1:


You used a short circuit or. Since ++i evaluates to -2, which is not 0, it short circuits and doesn't evaluate the rest of the expression. As a result, neither j or k get incremented.

Also note that the short circuit operators, || and &&, are left associative and that || is higher precedence than &&. As a result, the || gets evaluated first, and early outs if the left hand side evaluates to true, while && early outs if the left hand side evaluates to false.

EDIT: Fixed a mistake with explaining the precedence.




回答2:


Nothing after the || is evaluated, since the result of the expression ++i is nonzero.



来源:https://stackoverflow.com/questions/6476361/or-and-and-operation-in-c

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!