QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 690|回复: 2

关于用gcc编译程序的问题?

[复制链接]
发表于 2003-9-29 13:39:19 | 显示全部楼层 |阅读模式
我有如下代码:
typedef struct{
                      int *ptr1;
                      int *ptr2;
                      }Date;

在main()中,如果写 Date t; t.ptr1=NULL正常;
如果写Date *t;t->ptr1=NULL ;就不能正常运行,提示segment fault;
这是怎么回事?
发表于 2003-9-29 22:08:54 | 显示全部楼层
Date *t ;
t->ptr1 = NULL, t 不存在!

//
try use this :
Date *t = malloc (sizeof *t);
t->ptr1 = NULL;
回复

使用道具 举报

发表于 2003-9-30 09:08:05 | 显示全部楼层
别忘了free
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-14 11:17 , Processed in 0.054931 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表