单项选择题
下列程序段的运行结果是( )。 #include<stdio.h> void main() { char str[]="ABC",*p=str; printf("%d\n",*(p+3)); }
A.67
B.0
C.字符'C'的地址
D.字符'C'
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
语句“printf( a bhow 'are 'y bou n );”的输出结果是( )。
A.a\bhow\'are\'y\\bou
B.a\bhow\'are\'y\bou
C.how'are'you
D.ahow'are'y\bou
点击查看答案&解析
单项选择题
下列程序的输出结果是( )。 #include<stdio.h> int fun(intx) { int a; if(x==0‖x==1) return 3; else a=x-fun(x-2); return a; } void main() { printf( %d ,fun(7)); }
A.2
B.8
C.9
D.5
点击查看答案&解析
相关试题
下列程序的输出结果是______。#defi...
设有下列程序:#include<stdio.h>#inc...
若有定义int a[4][4]={1,2,3...
设有下列的程序段:char str[]= Hello...
下列程序输出的结果是______。int m...