Question: Consider this program segment: char a[] = Mary had a little lamb; char* p = a; int count = 0; while (*p != '0') {
Consider this program segment:
char a[] = "Mary had a little lamb";
char* p = a;
int count = 0;
while (*p != '\0')
{
count++;
while (*p != ' ' && *p != '\0') p++;
while (*p == ' ') p++;
}
What is the value of count at the end of the outer while loop?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
