单项选择题

有以下程序 #include main() { struct node { int n; struct node *next;} *p; struct node x[3]={{2, x+1},{4, x+2},{6, NULL}}; p=x; printf("%d,",p->n); printf("%d,",p->next->n); }   程序运行后的输出结果是_______。

A.2,3
B.2,4
C.3,4
D.4,6