Hello everyone...
I´ve got a problem that is bugging me for a while...
and how I´m not an experient C programer, I don´t know whats wrong with this...
anyone could help me?
well, I´m defining an structre such like this to implement a hash table:
1 2 3 4 5 6 7 8
typedefstruct entry{
int token;
int indiceLex;
entry *prox;
};
struct entry *pEnt[TAMANHO];
but I got a sintax error here: entry *prox;
and I dont know the error...
anyone knows whats´s the problem with this?