Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C
निम्नलिखित C कोड का आउटपुट क्या होगा?
#include
enum test
{
a,b=99,c,d=-1
};
main()
{
enum test m;
printf("%d\n%d\n%d\n%d\n",a,b,c,d);
}
enum test
{
a,b=99,c,d=-1
};
main()
{
enum test m;
printf("%d\n%d\n%d\n%d\n",a,b,c,d);
}
1
1
99
100
-1
2
0
99
100
-1
99
100
-1
3
0
1
2
3
4
त्रुटि