Point out the error (if any) in the following C code?
#includeenum hello{ a,b,c;};main(){ enum hello m; printf("%d",m);}

Point out the error (if any) in the following C code?

#include<stdio.h>enum hello{ a,b,c;};main(){ enum hello m; printf("%d",m);}
Correct Answer Error in the statement: a,b,c;

Related Questions

How far is point 'R' from Point 'T'? Statement (I): Point 'R' is 5 metres to the north of point 'M'. Point 'U' is 4 metres to the east of point 'R'. Point 'T' is to the west of point 'R' such that points 'U' 'R' and 'T' form a straight line of  metres. Statement (II): Point 'Z' is metres to the south of point 'T'. Point 'U' is  metres to the east of point 'T'. Point 'M' is  metres to the east of point 'Z'. Point 'R' is  metres to the north of point 'M'. Point 'R' lies on the line formed by joining points 'T' and 'U'.
Point out the error( if any) in the following code.
#includeenum India{ a,b,c};enum India g;main(){ g++; printf("%d",g);}