Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
unsigned long int ul = ULONG_MAX;
signed carchar sc;
sc = (signed char)ul; /* cast eliminates warning */

...