Bonjour à tous !
Voilà mon problème : j'ai le code suivant ->
struct motSuivant
{
int hash_code; //inutile(edit)
char* mot;
float coeff;
motSuivant *suiv;
}
struct unMot
{
int hash_code; //inutile(edit)
char* mot;
motSuivant *motSuiv;
struct unMot *memeHash;
}
struct unMot tabMots[TAILLE_MAX_TAB];
et l'erreur qui m'est renvoyee par dev c++ est la suivante :
two or more data types in declaration of `tabMots'
Quelqu'un voit où est mon problème ?
Message édité par Kineas le 02-03-2005 à 13:16:14