✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
#include <stdio.h>
enum Gender{Male, Female};
int main()
{
enum Gender g=Female;
printf("Gender: %s\n", (g != 0) ? ("Female") :("Male"));
return0;
}