This code generates a “potentially unsafe” dialog box where It will open in sandbox mode.
#pragma comment( linker, "/SUBSYSTEM:windows" )
#pragma comment( linker, "/ENTRY:mainCRTStartup" )
int main()
{
return 0;
}
This is setup as ‘Win32 Console Application’ in Visual Studio C++ 2010. Why is this code reported as virus?