单项选择题
以下程序的输出结果是______。
int a, b;
void fun()
a=100;
b=200;
main()
int a=5, b=7;
fun();
printf("% d % d \n", a, b);
A.100200
B.57
C.200100
D.75
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
C语言中用于结构化程序设计的3种基本结构是______。
A.顺序结构、选择结构、循环结构
B.if、switch、break
C.for、while、do-while
D.if、for、continue
点击查看答案&解析
单项选择题
程序中对fun函数有如下说明: void * fun(); 此说明的含义是______。
程序中对fun函数有如下说明:
void * fun();
此说明的含义是______。
点击查看答案&解析
相关试题
有以下程序: main() int a=1, b...
有以下程序: void swapl(int c0[]...
以下程序中函数setup的功能是返回形参指针s...
有以下程序: int f(int b[][4])...
以下程序的输出结果是______。 int...