Created
January 25, 2016 19:53
-
-
Save lorenmh/6f079415ac9ad79be9a5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main() { | |
int a[4] = { 2, 4, 8, 16 }; | |
int* b = (int *) a; | |
b++; | |
printf("%d", (* b)); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment