main()
{
enum _tag{ left=10, right, front=100, back};
printf("%d, %d, %d, %d", left, right, front, back);
}



main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, ri..

Answer / manisha

10,11,100,101

Is This Answer Correct ?    26 Yes 1 No

Post New Answer

More C Interview Questions

How a string is stored in c?

0 Answers  


What are nested functions in c?

0 Answers  


What is macro?

5 Answers   IBM,


explain how do you use macro?

0 Answers  


in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.

0 Answers   TCS,






for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????

8 Answers  


How can you convert integers to binary or hexadecimal?

0 Answers  


what is the difference between c and c++?

7 Answers  


WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }

25 Answers  


any "C" function by default returns an a) int value b) float value c) char value d) a & b

0 Answers  


#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?

1 Answers   Wipro,


How the C program can be compiled?

11 Answers   HP,


Categories