Skip to content

Instantly share code, notes, and snippets.

@hongruiqi
Last active December 27, 2015 13:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hongruiqi/7331368 to your computer and use it in GitHub Desktop.
Save hongruiqi/7331368 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main() {
char a = 255;
unsigned char b = 255;
printf("%d %d\n", a, b);
printf("%u %u\n", a, b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment