| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 407 人关注过本帖
标题:请问下大神,这个为什么会错。麻烦调释下。。
只看楼主 加入收藏
dengluoy
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:127
专家分:165
注 册:2013-2-5
结帖率:94.44%
收藏
已结贴  问题点数:20 回复次数:2 
请问下大神,这个为什么会错。麻烦调释下。。
程序代码:
#include<stdio.h>
#include<ctype.h>
#include<stdlib.h>
struct horse
{
    int age;
    int height;
    char name[20];
    char father[20];
    char mother[20];
    struct horse *next;
};
int main(void)
{
    struct horse *current;
    struct horse *first;
    struct horse *previous;
    char test = '\0';
    for(;;)
    {
        printf("请问想填写马匹的资料吗(Y or N):");
        scanf(" %c",&test);
        if(tolower(test) =='n')
            break;
        current = (struct horse*)malloc(sizeof(struct horse*));
        if(current == NULL)
            continue;
        if(first == NULL)
            first = current;
        if(previous != NULL)
            previous->next = current;
        printf("请输入马匹的名字:");
        scanf("%s",current->name);
        printf("请输入%s的age:",current->name);
        scanf("%d",&current->age);
        printf("请输入%s的height:",current->name);
        scanf("%d",&current->height);
        printf("请输入%s的father名字:",current->name);
        scanf("%s",current->father);
        printf("请输入%s的mother的名字:",current->name);
        scanf("%s",current->mother);
        current->next = NULL;
        previous = current;
    }
    current = first;
    while(current != NULL)
    {
        printf("马匹的名字叫做%s,它的年龄是%d,它的身高是%d.\n",current->name,current->age,current->height);
        printf("他的爸爸叫做%s,他的妈妈叫做%s\n",current->father,current->mother);
        previous = current;
        current = current ->next;
        free(previous);
    }
    return 0;
}
搜索更多相关主题的帖子: mother color 
2013-03-07 22:46
pauljames
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
等 级:千里冰封
威 望:9
帖 子:1555
专家分:10000
注 册:2011-5-8
收藏
得分:7 
struct horse *current;
current = (struct horse*)malloc(sizeof(struct horse*));
scanf("%s",current->name);
你的malloc出来的只有4个字节的空间,不是一个结构体空间,后面又对结构体内部成员操作,明显是非法的
要改成:
struct horse *current;
current = (struct horse*)malloc(sizeof(struct horse));

经常不在线不能及时回复短消息,如有c/单片机/运动控制/数据采集等方面的项目难题可加qq1921826084。
2013-03-08 07:42
终结者C
Rank: 2
等 级:论坛游民
帖 子:34
专家分:23
注 册:2013-3-3
收藏
得分:7 
for(;;){test='\0';.......在for循环开头为test赋值。
2013-03-08 07:47
快速回复:请问下大神,这个为什么会错。麻烦调释下。。
数据加载中...
 
   



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

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