Answers for "counting the amount of letter in a string"

0

count letter in string

#include<stdio.h>
#include<string.h>

int main() {
    char c;
    char s[100];
    scanf("%c", &c);
    scanf("%s", s);
    int count = 0;
    int len = strlen(s);
    for (int i = 0; i < len; i++) {
        if (s[i] == c) {
            count++;
        }
    }
    printf("%d", count);
    return 0;
}
Posted by: Guest on July-18-2021

Code answers related to "counting the amount of letter in a string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language