运算符面试题(面试宝典搬运,方便看)
例题1、以下程序输出结果是?(附答案)#include <iostream>using namespace std;int main(){ unsigned char a = 0xa5; //首先是1010 0101 unsigned char b = ~a >> 4 + 1; //~优先级位于第2 >> 位于第6 +位于第5 所以先取反,然后计算出5,然