Discussion:
Q: Create a program that prompts the user to input a string. The output will be the total number of characters in the string, the total number of consonants in the string, and the total number of vowels in the string. Be sure to prompt for input and to label your output. The code needs to handle the string as a character array (C-string) and as a string data type so this means that you will see the same output twice, once for a C-string and once for a string data type.