Write an inline type conversion operator for the above SimpleRider class that returns the rider object's gender:
A) operator char() { return gender; }
B) operator int() { return gender; }
C) operator std::string() { return gender; }
D) operator bool() { return gender; }