12345678910111213141516171819
void change (char Tab[][100], int I, int J) { char Aux[100]; Aux=Tab[I]; Tab[I]=Tab[J]; Tab[J]=Aux; } void change(char ptr[][100], int pos1, int pos2) { char aux[100]; strcpy(aux,ptr[pos1]); strcpy(ptr[pos1],ptr[pos2]); strcpy(ptr[pos2],aux); }