Accessing a linked list in a struct?

后端 未结 0 458
我在风中等你
我在风中等你 2020-12-16 17:50

I need to store a node list in a struct my code looks like this:

typedef struct node {
    int data;
    struct class *next;
} node;

typedef struct nodelist          


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