- 首页
- 行政执法资格
-
1.struct
-
2.struct bty
-
3.struct Car{
...
}car;struct Car{
...
};
struct Car car;
-
4.设有如下定义:struct s1{int x;int y;};struct s2{int a;float b;struct s1 p;}ss;以下引用正确的是( )。
-
5.#include "stdio.h"struct complx{int real; int im; };struct complx add (struct complx za,struct complx
-
6.已知如下语句:struct date{int y, m, d;};struct student{ int num;char name[9];struct date bir;} stu, *p=&stu;
-
7.struct student {int age; int num;};struct student stu[3]={{1001,20},{1002,19},{1003,2}};struct student
-
8.有以下定义和语句:struct workers{ int num;char name[20],c;struct{int day,month,year;}s;};struct workers w,*pw;
-
9.若有以下说明语句struct date{ int year; int month; int day;};struct date birthday;则下面的叙述不正确的是( )
-
10.struct sx{int u,v;};struct sx list[5],*px=list;