Question: 10. What does the following program segment do with a trace table ? char character int punctuation = 0; int letters = 0; int digits
10. What does the following program segment do with a trace table ?
char character
int punctuation = 0; int letters = 0; int digits = 0;cout<<"enter any character or '/' to quit: "<>character;while (character != '/'){if (character == ',' || character == '.')punctuation++;else if (character >= 'a' && character <= 'z' ||character >= 'A' && character <= 'Z')letters++;else if (character >= '0' && character <= '9')digits++;cout<<"enter any character or '/' to quit: "<>character}Cout<
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
