difference between "typedef enum" and "enum" - C / C++
Well it is relevent to C language in which if you use an enum or structure which are user defined data types, you need to specify the enum or struct keyword while using it. For example you define a struct as struct myStruct {int a; char c;} Now when you w...