logo

Crowdly

Browser

Add to Chrome

#include <stdio.h> #include <stdlib.h> int main(void) {   char t...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

#include <stdio.h>

#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 ?

More questions like this

Want instant access to all verified answers on moodle.insa-toulouse.fr?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome