SIGSEGV error for Doubly Linked List in C

前端 未结 0 541
伪装坚强ぢ
伪装坚强ぢ 2020-12-09 03:00

Here is the struct for each node in doubly linked list.

typedef struct node {
    struct node *previous;
    struct node *next;
} node;

node *head = NULL;


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题