单项选择题

执行下列程序段,结果是
#include(iostream.h>
void main()
int x=40;
char y=‘C’;
int n;
n=(x&0xff)&&(y>‘B’);
cout<<n;

A.0
B.1
C.2
D.3