I see the following error with Visual Studio 2015 (Tried both community and professional edition). Wrote a simple Visual C++ CosoleApplication which has "printf("Hello World\n");".
- Debug with Platform "x86" Compile and step through Works.
- Debug with Platform "x64" Compiles but when it runs it throws this error.
Code is simple with following lines:
// ConsoleApplication1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
int main()
{
printf("Hello World \n");
return 0;
}
My desktop has following configuration: OS: Windows 7 Enterprise 64-bit version Anti-Virus: McAfee Anti-virus software running; Can't disable that. Firewall: ON (Can't disable that for security)
Question: Stepping through the code with (Debug x86 platform) works. Why "Debug x64 platform" does NOT work ?
Any suggestion would be helpful.
Thanks gshant