C 语言实例 - 查找字符在字符串中出现的次数

C 语言必背代码范例 C 语言必背代码范例

查找字符在字符串中的起始位置(索引值从 0 开始)。

实例

#include <stdio.h>
 
int main()
{
   char str[1000], ch;
   int i, frequency = 0;
 
   printf("输入字符串: ");
   fgets(str, (sizeof str / sizeof str[0]), stdin);
 
   printf("输入要查找的字符: ");
   scanf("%c",&ch);
 
   for(i = 0; str[i] != '\0'; ++i)
   {
       if(ch == str[i])
           ++frequency;
   }
 
   printf("字符 %c 在字符串中出现的次数为 %d", ch, frequency);
 
   return 0;
}

输出结果为:

输入字符串: codebaoku
输入要查找的字符: o
字符 o 在字符串中出现的次数为 2

C 语言必背代码范例 C 语言必背代码范例

C 语言实例 - 字符串中各种字符计算 C 语言实例 计算字符串中的元音、辅音、数字、空白符。 实例 [mycode3 type='cpp'] #include int main() { char line[150]; int i, vowels, consonants, digits, spaces; vowels = consonants = digits = spac..