enum colors {BLACK,BLUE,GREEN}
main()
{
printf("%d..%d..%d",BLACK,BLUE,GREEN);
return(1);
}
Answer Posted / kripal singh thakur
0..1..2
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
Define C in your own Language.
Can the sizeof operator be used to tell the size of an array passed to a function?
C language questions for civil engineering
What is uint8 in c?
Write the Program to reverse a string using pointers.
Is c easier than java?
What is cohesion in c?
Tell me when is a void pointer used?
What is the benefit of using #define to declare a constant?
What are the different types of control structures in programming?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is c method?
Can we initialize extern variable in c?
How can I write a function that takes a format string and a variable number of arguments?
Explain the difference between call by value and call by reference in c language?