有以下定义和语句: struct workers {int num;char name[20];char c; struct {int day;int month;int year;}s;}; struct w

admin2017-04-26  14

问题 有以下定义和语句:
    struct workers
    {int num;char name[20];char c;
     struct
     {int day;int month;int year;}s;};
     struct workers w.*pw;
     pw=&w;
能给w中year成员赋1980的语句是

选项 A、w.year=1980;
B、pw->year=1980;
C、w.s.year=1980;
D、*pw.year=1980;

答案C

解析 本题主要考查的是结构体变量的嵌套定义,也就是说一个结构体变量也可以是一个结构体。在本题中works这个结构体中包含了结构体s。所以对结构体变量w中year成员的引用是w.s.year。
转载请注明原文地址:https://kaotiyun.com/show/EqDp777K
0

最新回复(0)