Skip to content

Instantly share code, notes, and snippets.

@rnovec
Last active October 15, 2020 00:47
Show Gist options
  • Save rnovec/1b65c68a5f21f1ffdff37f5c778bbfb3 to your computer and use it in GitHub Desktop.
Save rnovec/1b65c68a5f21f1ffdff37f5c778bbfb3 to your computer and use it in GitHub Desktop.

Integer Types

The following table provides the details of standard integer types with their storage sizes and value ranges

Type Storage Size Value range
char 1 byte -128 to 127 or 0 to 255
unsigned char 1 byte 0 to 255
char 1 byte -128 to 127 or 0 to 255

https://www.tutorialspoint.com/cprogramming/c_data_types.htm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment