CJCoding With Joseph

Count Occurrences of a Character

Read two lines of input: the first is a word, the second is a single character. Use a loop to count how many times that character appears in the word and print the count.

For input banana then a the output is:

3

Expected Output:

3
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
banana\na\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.