How do I check if an integer is even or odd using bitwise operators
In C (and most C-like languages)
if (number & 1) { // It's odd }