c语言中算术运算优先级高于移位运算
#include <stdio.h>int main(void){ int a = 1; int b = a<<1+2; printf("%d\n",b); return 0;}