✅ 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] = "Howdy, ";
char str2[100] = "partner!";
char * p1 = str1;
char * p2 = str2;
while (*p1 != '\0') p1++;
while (*p2 != '\0') *(p1++) = *(p2++);
*p1 = '\0';