✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
#include <stdlib.h>
int main(void)
{
char tab[5] = "allo";
char *ptr_tab = tab;
ptr_tab = (char *) malloc(5);
printf("tab = %s\n", ptr_tab);
return 0;
}
Que donne l'exécution de ce programme ?