51

单选题 51 /69

有以下程序

#include<stdio.h>
int main() {
    char x=2,y=2,z;
    z=(y<<1)&(x>>1);
    printf("%d\n",z);
}

程序的输出结果是?

参考答案

1
0
4
8