tableau libre en c

char *arr = malloc(3 * sizeof(char));
strcpy(arr, "bo");
// ...
free(arr);
Elegant Eel