Consider this statement: typedef enum good {a, b, c} hello; Which of the following statements is incorrect about hello?

Consider this statement: typedef enum good {a, b, c} hello; Which of the following statements is incorrect about hello? Correct Answer hello is a typedef of enum good

Related Questions

Point out the error (if any) in the following C code?
#includeenum hello{ a,b,c;};main(){ enum hello m; printf("%d",m);}
Which among the following differentiates enum in C#.NET from enum in C language?
Point out the error( if any) in the following code.
#includeenum India{ a,b,c};enum India g;main(){ g++; printf("%d",g);}