What will be the output of the following C code?
#include enum sanfoundry { a=2,b=3.56 }; enum sanfoundry s; main() { printf("%d%d",a,b); }
Answer: D
No answer description available for this question