After which I attempt to use my local debugger and expect to see Command Prompt come up saying "Hello World" right? Wrong, somehow VS2015 kills CP and looks such that the window flashes on the screen for a half second or more then flashes back to VS. Can someone give me instructions on how to go about correcting this problem? I'm a newbie but i'm not clueless enough to actually believe this is normal
#include <iostream>
int main()
{
std::cout << "Hello World\n" ; // << std::endl;
// wait for the user to hit <enter>
std::cout << "press the <enter> key to exit: " ;
std::cin.get() ;
// return 0 ; // implicit
}