I went to run my first program in MVS 2015 in VC++ and the output window that opens is blank.
#include <iostream>
using namespace std;
int main()
{
cout << "Test!!!" << endl;
return 0;
}
1>------ Build started: Project: Test1, Configuration: Debug Win32 ------
1> Test 1.cpp
1> Test1.vcxproj -> c:\users\shuey\documents\visual studio 2015\Projects\Test1\Debug\Test1.exe
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
Then I get a blank cmd window
Thanks