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 C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
What are the different types of pointers used in c language?
How will you write a code for accessing the length of an array without assigning it to another variable?
what do the 'c' and 'v' in argc and argv stand for?
What is file in c language?
Write the Program to reverse a string using pointers.
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is the best way to comment out a section of code that contains comments?
write a c program in such a way that if we enter the today date the output should be next day's date.
how to execute a program using if else condition and the output should enter number and the number is odd only...
What does typedef struct mean?
What are the types of assignment statements?
How can I find out the size of a file, prior to reading it in?
What does *p++ do?
Tell us something about keyword 'auto'.