Last active
December 17, 2015 20:19
-
-
Save pabloem/5666735 to your computer and use it in GitHub Desktop.
Sample code for endianness bug
This file contains hidden or 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
void print_variable(char *variable) | |
{ | |
printf("Variable is %d\n",*variable); | |
} | |
int main() | |
{ | |
int variable = 1; | |
print_variable(&variable); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment