✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Dado el siguiente código fuente:
int main() {
char a[5] = "abc";
char b[5] = "de";
strcat(a, b);
printf("%s", a);
return 0;
}
Indica la afirmación correcta.