关于redefinition; different basic types,定义错类型?大神进来看看
#include<stdio.h>#include<malloc.h>
#define len sizeof(struct student)
struct student *creat();
void print(struct student *p3);
struct student
{
int num;
float score;
struct student *next;
};
int n;
void main()
{
struct student *p0;
p0=creat();
print(p0);
}
struct student *creat()
{
struct student *head,*p1,*p2;
p1=p2=(struct student *)malloc(len);
printf("num:\n");
scanf("%d",&p1->num);
printf("score:\n");
scanf("%f",&p1->score);
head=p1;
n=0;
for(;1;)
{
n++;
p1=(struct student *)malloc(len);
p2->next=p1;
printf("num:\n");
scanf("%d",&p1->num);
printf("score:\n");
scanf("%f",&p1->score);
if(p1->num)
{
p2=p2->next;
}
else
{
p2->next=NULL;
break;
}
}
return head;
}
print(struct student *p3)
{
for(;p3;)
{
printf("num:\n",p3->num);
printf("score\n:",p3->score);
p3=p3->next;
}
}
结果 弹出了两个
error C2371: 'print' : redefinition; different basic types
see declaration of 'print'
求教
哥们儿是你定义print函数时出现错误了!
你声明的时候是void型,定义的时候是int型。所以出错!
不知道你还记不记得甲鱼哥在一节视频当中提到,c语言中,如果不说明函数的返回值类型的话,该函数返回的是int型,也就是说,c语言默认情况下,没有说明函数返回值类型的函数其返回值是int类型的。
所以void print(struct student *p3);和print(struct student *p3)不是同一个函数。
你将print(struct student *p3)改为void print(struct student *p3)就可以了!
挖槽,挂出来一会就被搞定了,哥你牛啊 我擦,这问题还没解决,就是编译没问题了,运行的时候弹出个
error C2660: 'print' : function does not take 1 parameters
麻烦上面的哥们再解决一下好吗?
qq18350 发表于 2013-12-23 20:35 static/image/common/back.gif
我擦,这问题还没解决,就是编译没问题了,运行的时候弹出个
你用回复问他,不然他看不到的。。。。 qq18350 发表于 2013-12-23 20:35 static/image/common/back.gif
我擦,这问题还没解决,就是编译没问题了,运行的时候弹出个
我把你的程序貼出來,改了2樓那個哥們說的地方后,編譯通過啦。gcc編譯的。
function does not take 1 parameters 意思是你的“print”那個函數參數個數不是1個,可能你不小心又寫錯了。你可以複製你1樓的代碼,按照2樓的哥們改一下,編譯即可運行。 额,可能是我不小心弄到哪里了,现在终于能运行了,谢谢上面的各位大神了,分现在就给
页:
[1]