设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 手机 数据 公司
当前位置: 首页 > 服务器 > 安全 > 正文

【数据结构】 单向链表

发布时间:2021-03-31 20:30 所属栏目:53 来源:网络整理
导读:【1】错误:H-next =NULL 或其他“让指针指向空”的语句运行报错: “ ‘NULL‘ : undeclared identifier ”? 、 “ ‘=‘ : cannot convert from ‘int‘ to ‘struct node *‘? ” 原因:未引入头文件 #include “stdio.h”?,把NULL定义为一个空地址是在 s

【1】错误:H->next =NULL 或其他“让指针指向空”的语句运行报错:“ ‘NULL‘ : undeclared identifier”? 、 “ ‘=‘ : cannot convert from ‘int‘ to ‘struct node *‘? ”

原因:未引入头文件 #include “stdio.h”?,把NULL定义为一个空地址是在 stdio头文件中完成的。

?

【2】

scanf("%d",c)

printf("位置为:")

printf语句的内容死活无法显示

原因:将scanf(“%d”,c)改为 scanf(“%d”,&c)

(编辑:ASP站长网)

    网友评论
    推荐文章
      热点阅读