Skip to content

Instantly share code, notes, and snippets.

@fsouza
Created May 29, 2013 01:48
Show Gist options
  • Select an option

  • Save fsouza/5667438 to your computer and use it in GitHub Desktop.

Select an option

Save fsouza/5667438 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int
main(void)
{
int x[4] = {4, 3, 2, 1};
int *p = x;
p += 3;
printf("%d\n", p[-2]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment