Skip to content

Instantly share code, notes, and snippets.

@rxbynerd
Created February 6, 2012 14:13
Show Gist options
  • Save rxbynerd/1752309 to your computer and use it in GitHub Desktop.
Save rxbynerd/1752309 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(int argc, const char *argv[])
{
int i, *n;
i = 6;
n = &i;
i--;
printf("%d\n", *n);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment