main()
{
enum{red,green,blue=6,white};
pf("%d%d%d%d", red,green,blue,white);
return 0;
}
a)0 1 6 2
b)0 1 6 7
c)Compilation error
d)None of the above
Answer Posted / saiteja
0167
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is malloc return c?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
When can you use a pointer with a function?
What is the benefit of using #define to declare a constant?
What is type qualifiers?
Difference between malloc() and calloc() function?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Explain how can you avoid including a header more than once?
Why main is not a keyword in c?
Explain pointer. What are function pointers in C?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What is the purpose of clrscr () printf () and getch ()?
What is methods in c?
What are identifiers and keywords in c?
Explain about C function prototype?