Skip to content

Instantly share code, notes, and snippets.

@znut
Last active June 19, 2017 14:51
Show Gist options
  • Save znut/d990a7227d8151ffbdccbdee03600bc1 to your computer and use it in GitHub Desktop.
Save znut/d990a7227d8151ffbdccbdee03600bc1 to your computer and use it in GitHub Desktop.
int i = 5; // [5] <- p
^
i
(...) p = &i;
[] = memory block
p = 0x1234 // addr
*p = 5 // value at addr p
// --- array ---
char cs[] = "1234";
// 0x1200 -> ['1']['2']['3']['4']['\0'];
// cs = 0x1200
/* +0 +1 +2 +3
* 0x1200: 01 02 03 04
* 0x1204: \0 xx xx xx
* 0x1208: xx xx xx xx
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment