Overflow during conversion to or from floating point type

suggest change

If, during the conversion of:

the source value is outside the range of values that can be represented in the destination type, the result is undefined behavior. Example:

double x = 1e100;
int y = x; // int probably cannot hold numbers that large, so this is UB

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents