View Single Post
11530
Veteran Member
Join Date: Sep 2011
Location: Underworld
Old 07-02-2012 , 20:55   Re: Even and Odd number
Reply With Quote #7

You can probably just leave off the equality.

Code:
stock bool:IsOdd(num)
{
    return (num & 1);
}
__________________
11530 is offline