Synopsis: | Use unsigned only where necessary. |
Language: | C |
Severity Level: | 10 |
Category: | CONVERSIONS |
Description: |
Although nearly all implementations will behave the same when converting to signed types, maximum portability requires that all implementation defined behaviour is avoided. See also the discussion in section 1.8.int a; unsigned int c; a = c; /* WRONG */ |