Skip to content

Instantly share code, notes, and snippets.

@grondilu
Created February 12, 2014 01:41
Show Gist options
  • Save grondilu/8948378 to your computer and use it in GitHub Desktop.
Save grondilu/8948378 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main() {
char n = 127;
printf("%d\n", n);
n++;
printf("%d\n", n);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment