Skip to content

Instantly share code, notes, and snippets.

@lichenbo
Created October 31, 2012 07:05
Show Gist options
  • Save lichenbo/3985548 to your computer and use it in GitHub Desktop.
Save lichenbo/3985548 to your computer and use it in GitHub Desktop.
/* Minimum and maximum values a ‘signed int’ can hold. */
#define INT_MAX 2147483647
#define INT_MIN (-INT_MAX - 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment