单项选择题
以下不正确的定义语句是
A.double x[5]={2.0,4.0,6.0,8.0,10.0};
B.int y[5]={0,1,3,5,7,9};
C.char c1[]={'1','2','3','4','5'};
D.char c2[]={'\x10','\xa','\x8'};
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
在C语言中,只有在使用时才占用内存单元的变量,其存储类型是
A.auto和register
B.extern和register
C.auto和static
D.static和register
点击查看答案&解析
单项选择题
阅读下列程序,则执行后的结果为 #include stdio.h main() { int c[][4]={1,2,3,4,5,6,7,34,213,56,62,3,23,12,34,56}; printf( %x,%x n ,c[2][2],*(*(c+1)+1));}
A.3e,6
B.62,5
C.56,5
D.3E,6
点击查看答案&解析
相关试题
阅读下列程序,当运行函数时,输入asd af...
有以下程序 #inclUde <stdio.h> voi...
有以下程序 #include<stdio.h> main...
若有以下说明和定义 union dt {int a...
在C语言中,运算对象必须是整型数的运算符是