✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Après l'exécution des instructions suivantes, que contiennent les variables str1
et str2
?
char str1[100] = "abcd";
char str2[100] = "efgh!";
char * p1 = str1;
char * p2 = str2;
while (*p2 != '\0') p2++;
while (*p1 != '\0') *(p2++) = *(p1++);
*p2 = '\0';
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!