单项选择题

在一个头指针为head的单向链表中,p指向尾结点,要使该链表成为单向循环链表可执行()。 

A.p=head->next;
B.head->next=p;
C.head->next=p->next;
D.p->next=head;