怎么访问第二个节点啊
把 p=create(); 改成 p=create()->next; 就可以输出第二个节点了
while(p != NULL) { printf("%d,%d\n",p->price,p->atk); p = p->next; }
//这样可以访问所有节点