Consider this statement: typedef enum good {a, b, c} hello; Which of the following statements is incorrect about hello?
Answer: A
The keyword typedef is used to give an alternate name to an existing data type. Hence hello is the new name for enum good.