单项选择题

有以下程序
main()
{unsigned char a=2,b=4,c=5,d;
d=a︱b;d&=e;prinff("%d\n",d);}
程序运行后的输出结果是()。

A.3
B.4
C.5
D.6

<上一题 目录 下一题>
热门 试题

单项选择题
有以下程序段 typedef struct node{int data;struct node * next;} * NODE; NODE p; 以下叙述中正确的是()。

A.p是指向structnode结构变量的指针的指针
B.NODEp;语句出错
C.p是指向structnode结构变量的指针
D.p是structnode结构变量

单项选择题
有以下程序main() {char ch[]= uvwxyz ,* pc; pc=ch;printf( %c\n ,*(pc+5)); } 程序运行后的输出结果是()。

A.Z
B.0
C.元素ch[5]的地址
D.字符Y的地址

相关试题
  • 有以下程序 main() { int a[4][...
  • 有以下程序 #include<stdio.h> main...
  • 有以下程序 struct S{ int n;int a...
  • 有以下程序 #include<string.h> void...
  • 有以下程序 #include<stdio.h> main...