【单选题】有说明 struct point { int x; int y; }p; 正确的赋值语句是( )。
A.
point.x = 1; point.y = 2;
【单选题】当一张幻灯片要建立超级链接时( )说法是错误的。
【单选题】轻体力活动水平的成年男性每日的能量需要量为
【多选题】在PowerPoint2003中,当一张幻灯片要建立超级链接时,( )。
【单选题】当一张幻灯片要建立超级链接时( )说法是错误的。
【单选题】结构类型变量的定义如下: struct point{ double x; double y; }; 在此基础上声明有5个这样的点的数组,正确的是
A.
struct point pentagon[5];
B.
pentagon struct point[5];
C.
struct pentagon point[5];
D.
struct point pentagon;
【单选题】有如下结构体的定义 struct point { int n; double x, y; }; struct point st1,st2; struct point *p; 以下哪种赋值方法是错误的