How does a singly linked list work when I perform the insertion in a function using local pointers?

前端 未结 0 1479
春和景丽
春和景丽 2020-12-04 07:56

this is the struct i have declared:

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

I have declared the struct node pointer globally

         


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