编写函数fun,求出ss所指字符串中指定字符的个数,并返回此值
时间: 2024-03-06 08:52:09 浏览: 86
.NET获取Html字符串中指定标签的指定属性的值
5星 · 资源好评率100%
可以使用以下代码来实现:
```c
#include <stdio.h>
#include <string.h>
int fun(char *ss, char c) {
int count = 0;
for (int i = 0; ss[i] != '\0'; i++) {
if (ss[i] == c) {
count++;
}
}
return count;
}
int main() {
char ss[] = "hello world";
char c = 'l';
int count = fun(ss, c);
printf("'%c' appears %d times in '%s'\n", c, count, ss);
return 0;
}
```
这个程序中,`fun`函数接收一个字符串和一个字符作为参数,计算该字符串中指定字符的个数,并返回该数值。在`main`函数中,我们定义了一个字符串`ss`和一个字符`c`,调用`fun`函数来计算`c`在`ss`中出现的次数,并输出结果。
阅读全文