鱼C论坛

 找回密码
 立即注册
查看: 1251|回复: 10

[已解决]c语言初学求助

[复制链接]
发表于 2020-2-12 16:56:01 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
        p1 = p2 = (struct student *)malloc(LEN);
我这个跟malloc的示范用法一样,为啥会出missing ')' before ';'的错误。求助十分感谢!!
最佳答案
2020-2-12 20:48:49
我找到错误了,我将你的代码试用了一下,发现也报错。然后我就看到了那个define。#define LEN sizeof(struct student);
此处多了一个分号。把分号去掉就没问题了。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-2-12 17:05:02 | 显示全部楼层
是不是少了分号了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-2-12 17:13:06 | 显示全部楼层
贴全代码!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-2-12 17:31:23 | 显示全部楼层

struct student *creat()
{
        struct student *head;
        struct student *p1 , *p2;

        p1 = p2 = (struct student *)malloc(LEN);

        printf("Please enter the num :\n");
        scanf("%d",&p1->num);
        printf("Please enter the score :\n");
        scanf("%d",&p1->score);

        head = NULL;
        n = 0;

        while(p1->num != 0)
        {
                n++;
                if(n == 1)
                {
                        head = p1;
                }
                else
                {
                        p2->next = p1;
                }

                p2 = p1;
                p1 = (struct student *)malloc(LEN);

                printf("\nPlease enter the num :\n");
                scanf("%d",&p1->num);
                printf("Please enter the score :\n");
                scanf("%d",&p1->score);
        }
        p2->next = NULL;
        return (head);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-2-12 17:32:38 | 显示全部楼层
超级甲鱼粉 发表于 2020-2-12 17:31
struct student *creat()
{
        struct student *head;

前面define 了一个 LEN 是 sizeof(struct student)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-2-12 17:33:20 | 显示全部楼层

struct student *creat()
{
        struct student *head;
        struct student *p1 , *p2;

        p1 = p2 = (struct student *)malloc(LEN);

        printf("Please enter the num :\n");
        scanf("%d",&p1->num);
        printf("Please enter the score :\n");
        scanf("%d",&p1->score);

        head = NULL;
        n = 0;

        while(p1->num != 0)
        {
                n++;
                if(n == 1)
                {
                        head = p1;
                }
                else
                {
                        p2->next = p1;
                }

                p2 = p1;
                p1 = (struct student *)malloc(LEN);

                printf("\nPlease enter the num :\n");
                scanf("%d",&p1->num);
                printf("Please enter the score :\n");
                scanf("%d",&p1->score);
        }
        p2->next = NULL;
        return (head);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-2-12 17:34:00 | 显示全部楼层

没有啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-2-12 17:34:20 | 显示全部楼层
应该是你之前的代码写错了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-2-12 17:39:58 | 显示全部楼层
zzh_zzh_ 发表于 2020-2-12 17:34
应该是你之前的代码写错了

前面是特别简单代码感觉没错啊
#include <stdio.h>
#include <malloc.h>

#define LEN sizeof(struct student);

int n;

struct student
{
        int num;
        int score;
        struct student *next;
};

struct student *creat();
void print(struct student *head);

void main()
{

        struct student *stu;

        stu = creat();
        print(stu);

        printf("\n\n");
}
struct student *creat()
{
        struct student *head;
        struct student *p1 , *p2;

        p1 = p2 = (struct student *)malloc(LEN);

        printf("Please enter the num :\n");
        scanf("%d",&p1->num);
        printf("Please enter the score :\n");
        scanf("%d",&p1->score);

        head = NULL;
        n = 0;

        while(p1->num != 0)
        {
                n++;
                if(n == 1)
                {
                        head = p1;
                }
                else
                {
                        p2->next = p1;
                }

                p2 = p1;
                p1 = (struct student *)malloc(LEN);

                printf("\nPlease enter the num :\n");
                scanf("%d",&p1->num);
                printf("Please enter the score :\n");
                scanf("%d",&p1->score);
        }
        p2->next = NULL;
        return (head);
}

void print(struct student *head)
{
        struct student *p;
        printf("There are %d records!\n\n",n);

        p = head;
        if(head)
        {
                do
                {
                        printf("NO.%d student's score is %d\n",n,p->score);
                        p = p->next;
                }while(p);

        }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-2-12 20:48:49 From FishC Mobile | 显示全部楼层    本楼为最佳答案   
我找到错误了,我将你的代码试用了一下,发现也报错。然后我就看到了那个define。#define LEN sizeof(struct student);
此处多了一个分号。把分号去掉就没问题了。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-2-12 22:16:26 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

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

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-24 10:54

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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