C: Signed/unsigned clarification

This commit is contained in:
Trent Ogren 2013-08-05 13:06:21 -05:00
parent 071e433dd3
commit e037df9c91

View File

@ -70,7 +70,7 @@ double x_double = 0.0;
// Integral types may be unsigned. This means they can't be negative, but
// the maximum value of an unsigned variable is greater than the maximum
// value of the same size.
// signed value of the same size.
unsigned char ux_char;
unsigned short ux_short;
unsigned int ux_int;