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"
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 <string> header.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.