Skip to content

Instantly share code, notes, and snippets.

@cammckinnon
Created May 2, 2012 03:57
Show Gist options
  • Save cammckinnon/2573494 to your computer and use it in GitHub Desktop.
Save cammckinnon/2573494 to your computer and use it in GitHub Desktop.
sizeof(int) = 4
sizeof(long long) = 8
sizeof(int*) = 4
a[5] = 5
5[a] = 5
a[5LL] = 5
5LL[a] = 5
i = 5
L = 5
a[i] = 5
i[a] = 5
a[L] = 5
L[a] = 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment