C语言面试题——位运算

int main(void)
{
    int a=3,b=4,z=1;
    printf("%d\n",b/a&~z);
    return 0;
}

这里~z的值可不是0哦,在X86CPU里存储单元里,显示为:


那么b/a&~z就是


Iget it!
原文地址:https://www.cnblogs.com/CodeWorkerLiMing/p/12007660.html