<a href="http://www.microsoft.com/express/">http://www.microsoft.com/express/</a> File -> New Project... Templates -> Visual C++. Then, on the central part, select Win32 Console Application:[OK]
[Next]..cpp extension, such as example.cpp. After clicking OK, the main window will display en editor to edit this new C++ file. Write the following in it:1
2
3
4
5
6
#include <iostream>
int main()
{
auto x = R"(Hello world!)";
std::cout << x;
}
Ctrl+F5.