✅ 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:
enum { MAX_STR_LEN = 256 };
void foo(char array1[], char const array2[]) {
int i = 0, j = 0;
while (array1[i++]);
--i;
while (array1[i++] = array2[j++]);
}
char str[MAX_STR_LEN] = "FourScore", str2[MAX_STR_LEN] = "AndSeven";
foo(str, str2);
fputs(str, stdout);
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!