C - While I am giving different values, linked list print same value

前端 未结 0 391
面向向阳花
面向向阳花 2021-01-24 20:52
struct NODE
{
    char* item;
    struct NODE* next;
};
typedef struct NODE Node;
Node* LinkedList = NULL;

//Insert Function

void insert(         


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