单项选择题

在单链表中,指针p指向元素为x的结点,实现删除x的后继的语句是(   )。
A、 p=p->next;
B、p->next=p->next->next; 
C、p->next=p; 
D、 p=p->next->next;