1、问题
函数应该在第一个参数中进行查找,并返回匹配第二个参数所包含的字符的数目
2、代码实现
#include <stdio.h>
#include <string.h>//函数应该在第一个参数中进行查找,并返回匹配第二个参数所包含的字符的数目
int count_chars(char const *str, char const *chars)
{ if (str == NULL || chars == NULL)return 0;int count = 0;while ((str = strpbrk(str, chars)) != NULL){//如果有匹配的记得把指针右移一下++str;++count;}return count;}int main()
{const char *str = "chengongyyuhellogyy";const char *chars = "chenyu";printf("count_chars(%s, %s) is %d\n", str, chars, count_chars(str, chars));return 0;
}
3、运行结果
gcc -g count_chars.c -o count_chars
./count_chars
count_chars(chengongyyuhellogyy, chenyu) is 12