gpt4 book ai didi

c - 以下函数的函数原型(prototype)头是什么?

转载 作者:行者123 更新时间:2023-11-30 20:06:55 25 4
gpt4 key购买 nike

我在编译时收到“函数‘searchEntry’应该有原型(prototype)”错误!

功能是

int searchEntry(indexs ind[],char key[],int n)

哪里indexs ind[ ]是结构体

typedef struct index
{
int id;
char word[20];
int count;
}indexs;

搜索输入函数

int searchEntry(indexs ind[],char key[],int n)
{
indexs *i;
for(i=ind;i<ind+n;i++)
{
if((strcmp(i->word,key)==0))
{
return(i-ind);
}
}
return -1;
}

函数原型(prototype)应该是什么?

最佳答案

函数原型(prototype)与函数定义相同。所以它将是:

int searchEntry(indexs ind[],char key[],int n);

关于c - 以下函数的函数原型(prototype)头是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19251233/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com