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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!