Code:
const char* EvenOrOdd( int value)
{
     if(value&1) return"odd";
     return "even";
}