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