
C++ IntelliSense: no operator "<<" matches these operands
Ahoj/Dobrý den,
když ve Visual Studiu 2010 Napíšu do C++ projektu kód obsahující proměnou string, objeví se mi error "IntelliSense: no operator "<<" matches these operands". Nevíte co s tím?
Díky
příklad kódu :
#include<iostream>
#include<string>
using namespace std;
int main ()
{
string a = "Text";
cout << a;
getchar();
}