C++ unsigned Keyword
Definition and Usage
The unsigned
keyword modifies the int
and char
data types to allow them to represent larger positive numbers by not representing negative numbers.
Related Pages
Read more about data types and numbers in our C++ Data Types Tutorial.