C251 User's Guide

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-typeis the data type (char or int) of the variable.
nameis the name of the variable.
valueis the value to assign to the variable.