unsigned
The unsigned type modifier specifies that a char or int variable stores only positive values. It is used as follows:
unsigned data-type name « = value »;
Where
| data-type | is the data type (char or int) of the variable. |
| name | is the name of the variable. |
| value | is the value to assign to the variable. |