A.char str[]="string";c=str;
B.scanf("%s",c);
C.c=getchar();
D.*c="string";
A.struct ord {int x;int y;int z;};struct ord a;
B.struct ord {int x;int y;int z;} struct ord a;
C.struct ord {int x;int y;int z;} n;
D.struct {int x;int y;int z;} a;
开始考试点击查看答案A.10,64
B.10,10
C.64,10
D.64,64
开始考试点击查看答案A.7
B.8
C.9
D.10
开始考试点击查看答案A.void (*pf)(); pf=fun;
B.void *pf(); pf=fun;
C.void *pf(); *pf=fun;
D.void (*pf)(int,char);pf=&fun;
开始考试点击查看答案