VS2010 Standard Default Runtime Checks

What is the default action in the VS2010 C / C ++ Win32 project for the "Basic execution checks = default" parameter. This can be found on the C / C ++ Properties Page - Code Generation. Thanks in advance. Max

+3
source share
1 answer

There are two types of basic runtime checks:

1: Uninitialized variables 2: corrupted frame frames

Selecting "Default" does not give you any runtime checks. The selection from the drop-down menu is misleading.

+4
source

All Articles