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

Explain how can I manipulate strings of multibyte characters?

0 Answers  


what is the meaning of java that is (J A V A) full form of JAVA

71 Answers   AKS University, Bhel, BNL, BPO, HCL, Peacecon,


Differentiate between the expression “++a” and “a++”?

0 Answers  


who is the father of C Language?

20 Answers   CTS, UST,


what are the facialities provided by you after the selection of the student.

0 Answers   TCS,






Why pointers are used in c?

0 Answers  


What are the primitive data types in c?

0 Answers  


change to postfix a/(b+c*d-e)

8 Answers   Value Labs,


How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.

1 Answers   HCL,


What is extern keyword in c?

0 Answers  


In C language, a variable name cannot contain?

0 Answers  


int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?

15 Answers   Mascot,


Categories