Skip to content

Instantly share code, notes, and snippets.

@Longlius
Created August 11, 2012 07:53
Show Gist options
  • Save Longlius/3322323 to your computer and use it in GitHub Desktop.
Save Longlius/3322323 to your computer and use it in GitHub Desktop.
Demonstration Odd/Even function
bool isEven(int a) {
return !(a & 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment