i need to know how to make a string variable in C++
i need to hold the file path of the desktop on a variable.
in vb.net it would be like this: dim path as string = "path\to\desktop"
std::string path = "path\\to\\desktop";
Don't forget to include the header.