单项选择题

表达式0x13^0x17的值是( )。

A) 0x04
B) 0x13
C) 0xE8
D) 0x17
<上一题 目录 下一题>
热门 试题

单项选择题
有以下程序: #include<stdio.h> #include<string.h> typedef structchar name[9];char sex;float score[2];)STU; void f(STU a) STU b= Zhao ,'m',85.0,90.0);int i; strcpy(a.name,b.name); a.sex=b.sex; for(i=0;i<2;i++)a.score[i]=b.score[i]; main() STU c= Qian ,'f',95.0,92.0); f(C) ;printf( %s,%c,%2.0f,%2.0f n ,c.name,c.sex,c.score[0],C.score[1]); 程序的运行结果是______。
A) Qian,f,95,92
B) Qian,m,85,90
C) Zhao,f,95,92
D) Zhao,m,85,90
单项选择题
现有如下程序段 #include stdio.h main( ) int a[5][6]=23,3,65,21,6,78,28,5,67,25,435,76,8,22,45,7,8,34,6,78,32,4,5,67,4,21,1; int i=0,j=5; printf( %d n ,*(&a[0][0]+2*i+j-2)); 则程序的输出结果为
A)21
B)78
C)23
D)28
相关试题
  • 设有以下说明,则不正确的叙述是( )。 ...
  • 设有定义语句int(*f(int);,则下列叙...
  • 设有定义“char*c;”,以下选项中能够使...