✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Write the exact text printed to the standard output stream by the following code fragment:
int foo(char const array[]) {
int i = 0;
while (array[i++]) ;
return i-1;
}
char str[] = "FourScoreAndSeven";
printf("%i", foo(str));
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!