单选题:```
```
struct Node{
int data; //数据域
Node*next; //指针域
};
```
带头结点的单链表的结点结构Node声明如上,头指针为head,则第一个数据结点的数据域值是( )。
@[D](2)
A. head->data
B. head.data
C. head.next->data
D. head->next->data
A.head->data
B.head.data
C.head.next->data
D.head->next->data
答案:D
struct Node{
int data; //数据域
Node*next; //指针域
};
```
带头结点的单链表的结点结构Node声明如上,头指针为head,则第一个数据结点的数据域值是( )。
@[D](2)
A. head->data
B. head.data
C. head.next->data
D. head->next->data
A.head->data
B.head.data
C.head.next->data
D.head->next->data
答案:D