String in win32 console application

In MFC application to use string variable we use CString
But how to use string in win32 console application which header file do we have to include???
o.O
1
2
3
4
5
#include <iostream>

...
std::string myString("");
...


CString
is part of the MFC.
std::string
is part of the standard library of C++;
which header file do we have to include???


#include <string>
Topic archived. No new replies allowed.