*}
codea teams

Is Odd



//returns 0 if even number, 1 if odd
IsOdd(int x)
{
    return (x & 1)
}