#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
Why preprocessor should come before source code?
write a program to display reverse of a number using for loop?
What are pointers? What are stacks and queues?
How many types of operators are there in c?
What are shell structures used for?
What is null character in c?
What is a sequential access file?
What is the difference b/w main() in C language and main() in C++.
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
Is it possible to execute code even after the program exits the main() function?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
main() { int i; printf("%d",scanf"%d",&i))//if the input is 12 24 34 then wat will be the output }