i need help on how to create a C++ program that will input string of characters and will count the number of different vowels, consonants and symbols included in the string.
Input a string => "program!"
total letter 'a' => 1
total letter 'e' => 0
total letter 'i' => 0
total letter 'o' => 1
total letter 'u' => 0
total vowels => 2
total consonants => 5
total symbols => 1
total characters => 8