0
Why are you making a mistake? Why?
Error = |21|error: expected Expression before 'Simple list'|
#define MAX 25
typedef struct Rota Rota;
typedef struct ListaRota ListaRota;
typedef struct ListaSimples ListaSimples;
typedef struct ListaDupla ListaDupla;
struct ListaSimples{
ListaRota *rotas;
ListaDupla *dados;
int tamanho;
};
struct ListaRota{
ListaRota *proximo;
char *dado[MAX];
};
struct ListaDupla{
Rota *info;
int tam[ListaSimples->tamanho];
};
struct Rota{
Rota *anterior;
Rota *sucessor;
char *nomecidade[MAX];
char *descricao[MAX*2];
};
got it, forgot that the vector size has q be initialized
– Arthur Eich