Salve a tutti,
volevo sapere come potevo accedere ai membri di una struttura con una variabile doppio puntatore.
Ho questa struttura:
typedef struct data *next;
typedef struct data{
char word[20];
int dim;
int num_voc;
next successivo;
}
e nel main()
data **lista;