我一直收到此错误:“error_grade”的[错误]类型冲突 我无法找到我的错误..我是C的新人,所以我真的需要一些帮助。
struct card {
char on[20];
char ep[20];
float b;
int ap;
struct card *next;
};
struct card *first,*last,*t;
int ch;
int main()
{
float mo;
do {
printf("\n1.Initialize\n2.Add to end\n3.Show list\n4.Average Grade\n0.Exit\nChoice:");
scanf("%d",&ch);
switch(ch) {
case 1: init_list(&first,&last);
break;
case 2: t=create_node();
add_to_end(t,&first,&last);
break;
case 3: show_list(first);
break;
case 4: mo=average_grade(&first);
printf("%f",&mo);
break;
case 0: printf("Bye!\n");
break;
default:printf("Try again.\n");
break;
} /* switch */
} while (ch!=0);
system("pause");
return 0;
}
float average_grade(struct card *arxh)
{
struct card *i;
float sum=0;
int cnt=0;
for (i=arxh; i!=NULL; i=i->next)
{
sum= sum + i->b;
cnt++;
}
return sum/cnt;
}
void init_list(struct card **arxh, struct card **telos)
{
*arxh=NULL;
*telos=NULL;
}
struct card *create_node()
{
struct card *r;
r=(struct card *)malloc(sizeof(struct card));
printf("Give data:");
scanf("%s %s %f %d",r->on,r->ep,&r->b,&r->ap);
r->next=NULL;
return r;
}
void add_to_end(struct card *neos,struct card **arxh,struct card **telos)
{
if (*arxh==NULL)
{
*arxh=neos;
*telos=neos;
}
else
{
(*telos)->next=neos;
*telos=neos;
}
}
void show_list(struct card *arxh)
{
struct card *i;
for (i=first; i!=NULL; i=i->next)
printf("%s %s %.1f %d\n",i->on, i->ep, i->b, i->ap);
}
答案 0 :(得分:2)
在C中,如果在调用函数时没有找到可见的原型,编译器会隐式声明原型(C99之前 - 自C99以来,隐式int规则已被删除),返回类型为int
。
但是当稍后发现实际定义时,它们的类型(float
s)与为您声明的编译器冲突。因此,在文件开头声明函数原型(或将它们放在头文件中)或移动main()
上面的函数。
答案 1 :(得分:1)
由于您没有传递更多信息,我怀疑这里有错误:
struct card *first ... mo=average_grade(&first) ... float average_grade(struct card *arxh)
将struct card **
("指针指向struct ..")传递给需要struct card *
的函数("指向struct的指针。" )。
由于您未更改arxh
,因此您可能需要mo=average_grade(first)
。
记得缺少原型。我认为你是在发布的代码之前给出的。
注意:您应该始终发布MCVE。那个例子远不止于此。你也没有表明你是否试图找出自己。
<强>提示:强>
始终启用警告。至少-Wall
(对于gcc)或类似的编译器。更多警告可能会有所帮助,请检查编译器的可用选项。