15 以下说明和语句中,对结构体变量std中成员id的引用方式不正确的是( )。 struct work { int id; int name; } std, *p; p=&std; ()4.0 分 A、std.id B、*p.id C、(*p).id D、&std.id 温馨提示:做题需要 沉着、冷静、细致、认真!正确答案 点击免费查看答案 试题上传试题纠错TAGS...
有如下定义的结构体类型: struct data { int year; int month; int day; }workday; 对其中成员month的正确引用方式是___。A、data.monthB、data.year.monthC、monthD、workday.month搜索 题目 有如下定义的结构体类型: struct data { int year; int month; int day; }workday; 对其中成员month的正确引...
设有一结构体类型变量定义如下: struct date { int year; int month; int day; }; struct worklist { char name[20]; char sex; struct date birthday; } person; 若对结构体变量person的出生年份进行赋值时,下面正确的赋值语句是A.year=1976B.birthday.year=..
对于如下结构体定义,若对变量person的出生年份进行赋值,正确的赋值是( )。struct date{ int year,month,day;};struct worklist{ char name[20];char sex;struct date birth;}person; A.birth.year=1976B.year=1976C.person.birth.year=1976D.person.year=1976 相关知识点: 试题来源: 解析 C 反馈 收藏...
以下说明和语句中,对结构体变量std中成员id的引用方式不正确的是( )。 struct work { int id; int name; } std, *p; p=&std;A、 std.idB、 *p.idC、 (*p).idD、&std.id搜索 题目 以下说明和语句中,对结构体变量std中成员id的引用方式不正确的是( )。 struct work { int id; int ...