Build your first C++ app
Create your App
Select File→New →Project to open the dialogue. Then you’ll want to open the C++ templates node on the left and choose Windows Console Application and rename it as “HelloWorld” then OK.
In your HelloWorld.cpp file, you’re going to add two references and a line to our main function:
#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, world!\n";
return 0;
}
I ran into an issue I have created my app