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
The compiler generated an exception while doing constant arithmetic during compilation.
The following sample generates C4756:
// C4756.cpp
// compile with: /W2 /Od
int main()
{
float f = 1e100+1e100; // C4756
}