enum colors {BLACK,BLUE,GREEN}
main()
{
printf("%d..%d..%d",BLACK,BLUE,GREEN);
return(1);
}
Answer Posted / paresh
0,1,2
| Is This Answer Correct ? | 10 Yes | 3 No |
Post New Answer View All Answers
Give differences between - new and malloc() , delete and free() ?
Explain modulus operator. What are the restrictions of a modulus operator?
Why do we need a structure?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
How can you find out how much memory is available?
How will you divide two numbers in a MACRO?
Can a function argument have default value?
What is typedef?
What are header files? What are their uses?
How do you override a defined macro?
What is the correct code to have following output in c using nested for loop?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What is meant by inheritance?
What are the different types of control structures in programming?