I have included string.h but when i try to use it as in the following i get errors
#include<string.h>
std::string something;
here std will be flagged and it says ** error C2039: ‘string’ : is not a member of ‘std’**
But in other parts of my program it works, only in some places i do get this error
The correct header file for std::string is
string, notstring.h.