| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 337 人关注过本帖
标题:c程序调试问题
只看楼主 加入收藏
suixingyilu
Rank: 1
等 级:新手上路
帖 子:9
专家分:5
注 册:2010-3-24
结帖率:50%
收藏
已结贴  问题点数:10 回复次数:2 
c程序调试问题
高手帮忙调试一下,谢谢
#include "stdio.h"
#include "malloc.h"
#define LEN sizeof(struct list)
struct list
    {
        int num;
        struct list *next;
    };
   
    struct list *creat()
    {   struct list *head;
        struct list *p1,*p2;
        int n=0;
        p1=p2=(struct list *)malloc(LEN);
        scanf("%d",p1->num);
        head=NULL;
        while(p1->num!=0)
        {
            if(n==1)head=p1;
            else p2->next=p1;
            p2=p1;
            p1=(struct list *)malloc(LEN);
            scanf("%d",p1->num);
            p2->next=NULL;
            return(head);        
        }
    }
void main()
{
   struct list *p;
   p=creat();
   while(p!=NULL)
   {
       printf("%d\n",p->num);
    p=p->next;
   }
}
搜索更多相关主题的帖子: 调试 
2010-04-12 09:52
ldg628
Rank: 12Rank: 12Rank: 12
等 级:火箭侠
威 望:3
帖 子:526
专家分:3036
注 册:2009-6-23
收藏
得分:10 
    struct list *creat()
    {   struct list *head;
        struct list *p1,*p2;
        int n=0;
        p1=p2=(struct list *)malloc(LEN);
        scanf("%d", &p1->num);
        head=NULL;
        while(p1->num!=0)
        {
            n++;
            if(n==1)head=p1;
            else p2->next=p1;
            p2=p1;
            p1=(struct list *)malloc(LEN);
            scanf("%d",&p1->num);
            p2->next=NULL;
        }
        return(head);
    }
仔细点儿比较好。。。。
2010-04-12 10:16
suixingyilu
Rank: 1
等 级:新手上路
帖 子:9
专家分:5
注 册:2010-3-24
收藏
得分:0 
回复 2楼 ldg628
谢啦
2010-04-12 10:24
快速回复:c程序调试问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.033443 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved