Ho un altra domanda ora ho una struttura di questo tipo:
struct iniziale{
int x;
struct strada *stradat[10]
}
struct strada{
int x;
struct strada *next;
}
ho creato una struttura di tipo iniziale e sto provando ad allocare memoria per stradat ecco i passaggi
struct iniziale *istante=NULL;
istante=(struct iniziale *)malloc(sizeof(struct iniziale))
istante->stradat=(struct strada *)malloc(sizeof(struct strada *)*10)
}
l'errore sta nell allocare memoria per l'array di struct mi dice incomatible types in assignament