#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
whitch value return void main?
List some basic data types in c?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
Explain what is the benefit of using an enum rather than a #define constant?
Are the expressions * ptr ++ and ++ * ptr same?
give one ip, find out which contry
I need a sort of an approximate strcmp routine?
How many levels deep can include files be nested?
What is a memory leak in structures? How can we rectify that?
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
What is stack in c?
What are the Advantages of using macro