Ah. string.h != string.

string.h contains the C string handling functions, which you're likely to need a tutorial for (or just look at the MSVC docs). string has the C++ Standard Library's string class, and that's pretty easy to use.

Actually, the MSVC docs have info on the string class as well - they tell you everything you need to know.