#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); }
can any one tel me wt is the question pattern for NIC exam
What is #error and use of it?
Explain about block scope in c?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
Write a program to check prime number in c programming?
Write a Program to find whether the given number or string is palindrome.
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is difference between Structure and Unions?
what is the function of pragma directive in c?
Write a program in c to replace any vowel in a string with z?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
How was c created?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
Explain what is the benefit of using an enum rather than a #define constant?