Pointers in structures and use of typedef in structure

前端 未结 0 1843
隐瞒了意图╮
隐瞒了意图╮ 2021-01-29 05:49
struct node

{

int data;

struct node *addr;

};

typedef struct node *NODE;   NODE start; //statement 1

typedef struct node NODE;    NODE *start;//statement 2
         


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