Merge pull request #162 from misfo/patch-1

C: Signed/unsigned clarification
This commit is contained in:
Adam Bard 2013-08-05 12:11:00 -07:00
commit 01f0e59980

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;