单项选择题
有以下程序:
#include <stdio.h>
void fun(char *a, char *b)
a=b; (*
A.++;
&nb
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
有以下程序段: main() int a=5,*b,**c; c=&b;b=&a; ┆ 程序在执行了c=&b;b=&a;语句后,表达式**c的值是( )。
A.变量a的地址
B.变量b中的值
C.变量a中的值
D.变量b的地址
点击查看答案&解析
单项选择题
有以下程序: #include <stdio.h> struct s int x,y; data[2]=10,100,20,200; main() struct s *p=data; printf( %d n ,++(p->x)); 程序运行后的输出结果是( )。
A.10
B.11
C.20
D.21
点击查看答案&解析
相关试题
以下程序的功能是计算:。 #include <s...
有以下结构体说明和变量定义,如下图所示,...
以下程序中函数scmp的功能是返回形参指针s...
在下列选项中,不是一个算法一般应该具有的...
有以下程序: #include <stdio.h> ...