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

Answer Posted / manisha

10,11,100,101

Is This Answer Correct ?    26 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is sizeof c?

616


What is pointer in c?

749


Simplify the program segment if X = B then C ← true else C ← false

2591


What is array within structure?

593


Why functions are used in c?

594






main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }

919


How does placing some code lines between the comment symbol help in debugging the code?

550


Write a Program to find whether the given number or string is palindrome.

618


What is the total generic pointer type?

735


Write a program to identify if a given binary tree is balanced or not.

691


With the help of using classes, write a program to add two numbers.

624


When should the const modifier be used?

662


What is the function of this pointer?

683


What are the types of type qualifiers in c?

659


What is character set?

690