Skip to content

Instantly share code, notes, and snippets.

@IsraelBuitronD
Created December 25, 2014 02:30
Show Gist options
  • Select an option

  • Save IsraelBuitronD/3e30478f7c8b66278556 to your computer and use it in GitHub Desktop.

Select an option

Save IsraelBuitronD/3e30478f7c8b66278556 to your computer and use it in GitHub Desktop.
Check if integer is odd or even
if((x&1) == 0) {
// x is even
} else {
// x is odd
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment