What will be the output of the following C code?
#include<stdio.h>
enum shyam
{
a=2,b=3.56
};
enum shyam s;
main()
{
printf("%d%d",a,b);
}
#include<stdio.h>
enum shyam
{
a=2,b=3.56
};
enum shyam s;
main()
{
printf("%d%d",a,b);
}
A. 2 3
B. 0 1
C. 2 3.56
D. Error
Answer: Option D
Join The Discussion