pourquoi je ne peux pas compter la chaîne comme ici:
string text ;
text = WordList[i].substr(0,20) ;
cout << "String is : " << text << endl ;
quand je fais cela, je reçois une erreur dans le cout.
Erreur 2 erreur C2679: binaire '<<': aucun opérateur trouvé ne prend un opérande de droite 'de type' std :: string '(ou aucune conversion acceptable) c: \ users \ mollasadra \ documents \ visual studio 2008 \ projets \ barnamec \ barnamec \ barnamec.cpp 67 barnamec
c'est incroyable, même en utilisant
string text ;
text = "hello" ;
cout << "String is : " << text << endl ;
ne fonctionne pas