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
Write a code of a general series where the next element is the sum of last k terms.
How do you do dynamic memory allocation in C applications?
What are type modifiers in c?
What is the use of f in c?
What are the 4 types of functions?
What is #pragma statements?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What does malloc () calloc () realloc () free () do?
What is return type in c?
What is wrong with this statement? Myname = 'robin';
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
Write a program to print fibonacci series without using recursion?
Is c procedural or functional?
When we use void main and int main?
Why is C language being considered a middle level language?