Assigning an out-of-range value to an integer

suggest change
// Supposing SCHAR_MAX, the maximum value that can be represented by a signed char, is
// 127, the behavior of this assignment is implementation-defined:
signed char integer;
integer = 128;

Feedback about page:

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



Table Of Contents