fork download
  1. #include <stdio.h>
  2.  
  3. int str_chnum(const char st[], int ch)
  4. {
  5. int cnt = 0, i;
  6.  
  7. for (i = 0; st[i]; ++i)
  8. if (st[i] == ch)++cnt;
  9.  
  10. return cnt;
  11. }
  12.  
  13. int main()
  14. {
  15. char st[100], ch;
  16.  
  17. printf("文字列を入力してください:");
  18. fgets(st, 100, stdin);
  19. printf("検索する文字を入力してください:");
  20. ch = getchar();
  21. printf("その文字は%d個含まれています。\n", str_chnum(st, ch));
  22.  
  23. return 0;
  24. }
Success #stdin #stdout 0s 1792KB
stdin
KoKo
o
stdout
文字列を入力してください:検索する文字を入力してください:その文字は2個含まれています。