signed
The signed type modifier specifies that a char or int variable stores both positive and negative values. It is used as follows:
signed 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. |