题目内容

文本文件不会感染或病毒。( )

查看答案
更多问题

无线网络接入点称为无线AP。( )

设有以下说明语句:struct ex { int x; float y; char z;}demo;则下面叙述中不正确的是( )。

A. struct 是结构体类型的关键字
B. demo是结构体类型名
C. x,y,z 都是结构体成员名
D. struct ex是结构体类型

有以下程序#includestruct ord{ int xpos,ypos;}dt[2] = {1,2,3,4};int main(){ struct ord *p = dt; printf("%d,",++(p->xpos) ); printf("%d\n", ++(p->ypos) );}程序运行后的输出结果是______

有以下程序:#includestruct stud{ int num; char sex;};void func( struct stud b){ b.num = 1002; b.sex = 'f';}int main(){ struct stud s = {1001,'m'}; func(s); printf("%d,%c\n",s.num ,s.sex);}该程序的运行结果是:______

答案查题题库