Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
overflow in constant arithmetic
Remarks
The compiler generated an exception while doing constant arithmetic during compilation.
Example
The following example generates C4756:
// C4756.cpp
// compile with: /W2 /Od
int main()
{
float f = 1e100+1e100; // C4756
}