There are three character types in C++.
If you use a character type to handle characters, write char
.
char
is also used to handle numbers
It is unclear how the value will be treated, signed
/ unsigned
.
If you use character type to deal with numbers,
The reason why I say "at least" is This is because the C++ standard only sets the minimum range for the numeric type. Depending on your environment, it may be possible to write more than that.
© 2024 OneMinuteCode. All rights reserved.