C语言链表(初学者不懂,求大神帮助,教材上的源代码抄下来用Code Blocks编译有个错误)

2024-11-22 17:38:47
推荐回答(1个)
回答1:

new没有定义

加一个new的定义就可以了

struct grade*head=NULL,*next,*tail;

改成

struct grade*head=NULL,*next,*tail,*new;