| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 305 人关注过本帖
标题:一个编译出问题的链表
只看楼主 加入收藏
kobebeyong
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2009-5-8
结帖率:100%
收藏
 问题点数:0 回复次数:2 
一个编译出问题的链表
#include<stdio.h>
#include<stdlib.h>
struct node
{
    int num;
    char name[20];
    int age;
    struct node *next;
};
void main()
{
    struct node *creat();
    void print();
    struct node *head;
    head=NULL;
    head=creat(head);
    print(head);
}
/*****************************************/
struct node *creat(struct node *head)
{
    int n;
    struct node *p1=NULL,*p2=NULL;
    printf("please input a number:\n");
    scanf("%d",&n);
    for(;n>0;n--)
    {
        p1=(struct node *) malloc(sizeof(struct node));
        printf("input num,name,age\n");
        scanf("%d",p1->num);
        gets(p1->name);
        scanf("%d",p1->age);
        p1->next=NULL;
        if(head==NULL)
            head=p1;
        else
        {
            p2=p1;
            p2->next=p1;
        }
    }
    return head;
}
/*******************************************/
void print(struct node *head)
{
    struct node *temp;
    temp=head;
    while(temp!=NULL)
    {
        printf("%d, %s, %d\n",temp->num,temp->name,temp->age);
        temp=temp->next;
    }
}
谢谢




搜索更多相关主题的帖子: 编译 链表 
2009-09-17 14:04
Devil_W
Rank: 10Rank: 10Rank: 10
等 级:青峰侠
威 望:9
帖 子:1160
专家分:1797
注 册:2009-9-14
收藏
得分:0 
函数调用前没声明。
2009-09-17 14:08
chenaiyuxue
Rank: 5Rank: 5
来 自:山东滨州
等 级:职业侠客
帖 子:334
专家分:370
注 册:2008-5-20
收藏
得分:0 
回复 楼主 kobebeyong
create函数中scanf("%d",p1->num);和scanf("%d",p1->age);的第二个参数前加取地址符&,即
scanf("%d",&p1->num);和scanf("%d",&p1->age);

你是雪,我是尘埃,相遇是意外;你坠落,在我胸怀,流进我血脉。
2009-09-17 14:50
快速回复:一个编译出问题的链表
数据加载中...
 
   



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

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