lundi 5 septembre 2016

Difference between *arr[] and **arr

Is the same

char* s1[size];

To

char** s2 = malloc(size * sizeof(char*));

They have any difference?

Aucun commentaire:

Enregistrer un commentaire