Question: The following code is intended to process a string and count the number of letters of the alphabet, the number of digits, the number of
The following code is intended to process a string and count the number of letters of the alphabet, the number of digits, the number of punctuation characters, the number of digits, and the number of spaces/other characters. Does it correctly do that? (Dont consider any accidental typos that I may have made.) int main() { int numAlpha=0, numDigits=0, numPuncts=0, numOthers=0; string sent; //a string to hold the users sentence getline(cin,sent); for (int j=0; j
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
