填空题
若有如下结构体说明:
struct STRU int a,b;char c:double d;
struct STRU*p1,*p2; ;
请填空,以完成对t数组的定义,t数组的每个元素为该结构体类型。
【11】
t[20]
【参考答案】
struct STRU
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
填空题
以下程序输出的最后一个值是 【8】 。 int ff(int n) static int f=1; f=f*n; return f; main() int i; for(i=1;i<5;i++) printf( %d n ,ff(i));
点击查看答案&解析
填空题
下列程序的输出结果是 【9】 。 main() int a[]=2,4,6,*ptr=&a[0],x=8,y,z; for(y=0;y<3;y++) z=(*(ptr+y)<x)*(ptr+y):x; printf( %d n ,z);
点击查看答案&解析
相关试题
以下程序段打开文件后,先利用fseek函数将...
下面的程序可列指定字符串中的字符串进行从...