单项选择题

假设有语句sizeof(double),则它是( )。

A.一个整型表达式
B.一个双精度浮点型表达式
C.一种函数调用
D.一种函数定义
<上一题 目录 下一题>
热门 试题

单项选择题
下列程序的运行结果是( )。 #include<stdio.h> void fun(int*s,int*p) {static int t=3; *p=s[t]; t--; } void main() {int a[]={2,3,4,5},k,x; for(k=0;k<4;k++) {fun(a,&x); printf( %d, ,x); } }
A.5,4,3,2,
B.2,3,4,5,
C.2,2,2,2,
D.5,5,5,5,
单项选择题
已知char a;int b;float e;double d;则表达式a-b+c-d结果为( )型。
A.double
B.float
C.int
D.char
相关试题
  • 有以下程序: #include<stdio.h> #i...
  • 在软件开发中,需求分析阶段产生的主要文档...
  • 若已定义的函数有返回值,则以下关于该函数...
  • 下述程序的输出结果是( )。 #include...