โ Back to Arrays
Question 56
Count Words in Char Array
Count Words in Char Array
Write a program that reads a line of text into a character array and counts how many words it contains. Assume the input contains words separated by a single space, with no leading or trailing spaces. Example inputs: "Dog", "Dog Cat", "One Two Three". Output the word count as a single integer.
Expected Output:
1
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.