enum colors {BLACK,BLUE,GREEN}
main()
{
printf("%d..%d..%d",BLACK,BLUE,GREEN);
return(1);
}
Answer Posted / vignesh1988i
the ascii values of B,B,G will be printed..............
since these black,blue and green are strings given directly
in the printf statements..... so the base address will be
going to the function definition of printf......
| Is This Answer Correct ? | 0 Yes | 13 No |
Post New Answer View All Answers
Why C language is a procedural language?
What are the main characteristics of c language describe the structure of ac program?
How can you draw circles in C?
What are local static variables?
What is the advantage of using #define to declare a constant?
explain what are pointers?
What is extern storage class in c?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is sizeof int in c?
Why c language is called c?
Mention four important string handling functions in c languages .
What is union and structure?
Differentiate between full, complete & perfect binary trees.
What is floating point constants?
The difference between printf and fprintf is ?