Skip to content

Instantly share code, notes, and snippets.

@offlinemark
Created January 8, 2016 23:42
Show Gist options
  • Select an option

  • Save offlinemark/79d253720b7a578a75f2 to your computer and use it in GitHub Desktop.

Select an option

Save offlinemark/79d253720b7a578a75f2 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main() {
int x = 1;
char *y = (char*) &x;
if (*y == 1) {
puts("little endian");
} else {
puts("big endian");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment