Point out the error (if any) in the following C code?
#includeenum hello{ a,b,c;};main(){ enum hello m; printf("%d",m);}
#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;
মোঃ আরিফুল ইসলাম
Feb 20, 2025