#include
main()
{
enum _tag{ left=10, right, front=100, back};
printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back);
}
No Answer is Posted For this Question
Be the First to Post Answer
Difference between null pointer and dangling pointer?
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
difference between i++* and *++i
FILE PROGRAMMING
code for concatination of 2 strings with out using library functions?
what is the difference between NULL & NUL keywords in C?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
what are the compilation steps? ( i want inside the compiler )
What is function prototype in c with example?
What is sparse file?
Can a binary search tree be used as an index? If yes, how? Explain