Neden bunu sevemiyorum cout
string
:
string text ;
text = WordList[i].substr(0,20) ;
cout << "String is : " << text << endl ;
Bunu yaptığımda, aşağıdaki hatayı alıyorum:
Hata 2 hatası C2679: ikili '<<': 'std :: string' türünde sağdan işlenen alan bir operatör bulunamadı (veya kabul edilebilir bir dönüştürme yok) c: \ users \ mollasadra \ belgeler \ visual studio 2008 \ projeler \ barnamec \ barnamec \ barnamec.cpp 67 barnamec **
Şaşırtıcı, bu bile çalışmıyor:
string text ;
text = "hello" ;
cout << "String is : " << text << endl ;
#include <iostream>
?