Bonsoir, j'ai fait un programme aidé par le prof et maintenant j'arrive plus à appeler une fonction, donc ici la fonction en question :
http://pastebin.com/VDrtHN7x
En gros, faut ajouter des mots dans une table de hachage.
dans mon main j'ai ça :
int main() {
ifstream fin("dictionnaire.txt" );
string word;
if(fin.good())
while(fin >> word)
ajoute(*****Table******, hachage(word), word);
else
cout << "Erreur";
}
error: expected primary-expression before ',' token
L'erreur vient de Table à l'appel de la fonction ajoute, quel est le problème?
Merci !