Come faccio a passare ad una funzione un Array di Strighe ?
Io Ho Provato cosi' ma mi da' un errore...codice:int funzione (unsigned char *buff[]); int funzione2 (unsigned char **buff); void funzione3 (void) { char array [3][11] = {"Ciao", "a", "Tutti"} funzione (array); funzione2 (array); }
Parametri incompatibili o cose del genere...