What will be the output of the following C code?
#include enum class { a,b,c }; enum class m; main() { printf("%d",sizeof(m)); }
Answer: B
No answer description available for this question