include "stdafx.h"
include <iostream>
using namespace std;
void main(int argc, _TCHAR* argv[])
{
cout <<"Hello World";
//return 0;
}
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Even the simplest code in returns the Visual Studio 2015 Exception HRESULT 0x89710016 when I try to run or debug it
include "stdafx.h"
using namespace std;
void main(int argc, _TCHAR* argv[])
{
cout <<"Hello World";
//return 0;
}
Will try . I can run from command window but not VS IDE. Why?
Hi @Brown, Jerome ,
Try the following steps:
C:\Users\xxx(current user)\AppData\Local\Microsoft\VisualStudio\14.0\ComponentModelCache
devenv /safemode
on the Developer Command Prompt for VS2015 to start a pure, initial vs to test your solution.Best Regards,
Perry
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our * *documentation* to enable e-mail notifications if you want to receive the related email notification for this thread.**