为了账号安全,请及时绑定邮箱和手机立即绑定

请帮忙编写一个函数int func(char *str,char ch),它的功能是:求出str字!

请帮忙编写一个函数int func(char *str,char ch),它的功能是:求出str字!

C
慕勒3428872 2022-03-25 17:15:19
请编写一个函数int func(char *str,char ch),它的功能是:求出str字符串中指定字符ch的个数,并返回此值,c语言程序
查看完整描述

1 回答

?
侃侃无极

TA贡献2051条经验 获得超10个赞

int func(char *str,char ch)
{
int cnt;
for(cnt=0;*str;str++)
if(*str==ch)cnt++;
return cnt;
}

查看完整回答
反对 回复 2022-03-28
  • 1 回答
  • 0 关注
  • 147 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信