gpt4 book ai didi

c - 使用递归查找数组中数字的频率

转载 作者:行者123 更新时间:2023-12-04 12:00:28 24 4
gpt4 key购买 nike

我的代码块出错了。但是我无法在任何地方找到它

程序。它在说

in Line 3 :expected ';',',' or ')' before '=' token

 #include<stdio.h>

int count_key1(int a[],int size,int key,int flag=0)
{

if(size!=0)
{
if(a[size-1]==key)
count_key1(a,size--,key,flag++);
}
else
return flag;
}
int main()
{
int b[30]={1,4,2,3,2,6,6,9},key1=9,result;
result=count_key1(b,8,key1,0);
printf("%d is %d times present",key1,result);
return 0;
}

最佳答案

在 C 中,您不能在函数参数中分配默认值

中移除 =0
  int count_key1(int a[],int size,int key,int flag=0)

IIRC,您对 C++ 函数重载感到困惑,在这种情况下,如果在调用函数时未传递参数,我们可以为参数设置一些默认值。

但是,在 C 中,函数调用必须完全匹配定义中存在的签名。因此,基本上,函数定义中不需要默认值

关于c - 使用递归查找数组中数字的频率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34923832/

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