Here is what i got. I need to count the Uppercase entered in a string. Can someone help me?
Enter string: The Brown Fox
#of Upper Case: 3
My Progress:
#include<iostream>
#include<string>
usingnamespace std;
int main()
{
char string[15];
cout<<"Enter string: ";
cin.getline(string,15);
.
.
.
.
}
I need the next solution thanks!