Answer Posted / gsrinivas
enum data type usally user defined.
for ex:
enum{sunday,monday,tuesday};
enum x;
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
I need a sort of an approximate strcmp routine?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
What are header files and what are its uses in C programming?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What is an expression?
code for quick sort?
How to draw the flowchart for structure programs?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
What do you mean by command line argument?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
What is context in c?
What is a program flowchart?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is the best organizational structure?