我想知道以下C程序的输出是如何32的.请给我一步一步的指导.
main() { int a=4,b=2; a=b<<a+b>>2; printf("%d",a); }
c bit-shift operator-precedence
bit-shift ×1
c ×1
operator-precedence ×1