Learn-c-by-examples-program-to-count-characters-in-string

提供:Dev Guides
移動先:案内検索

文字を数える文字列プログラム

実装

今、私たちはプログラムの実際の実装が表示されます-

#include <stdio.h>

int main() {
   char s[] = "TajMahal";    //String Given
   char ch = 'a';            //Character to count

   int i = 0;
   int count = 0;            //Counter

   while(s[i] != '\0') {
      if(s[i] == ch)
         count++;

      i++;
   }

   if(count > 0) {
      if(count == 1)
         printf("%c appears %d time in '%s'", ch, count, s);
      else
         printf("%c appears %d times in '%s'", ch, count, s);
   } else
      printf("%c did not appear in %s", ch, s);

   return 0;
}

出力

このプログラムの出力は次のようになります-

a appears 3 times in 'TajMahal'