• 2022-10-26
    在以下定义的结构体数据类型中,能够用来定义链表结点的是________。(第8章结构体程序设计)
    A: structnode{charname[10];char*next;};
    B: structnode{charname[10];intnext;};
    C: structnode{charname[10];structnode*next;};
    D: structnode{charname[10];char*node;};