#define MAX 3
main()
{
printf("MAX = %d
",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
}
Answer Posted / chandrika
MAX=3
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the advantages of using linked list for tree construction?
Can we replace the struct function in tree syntax with a union?
How will you divide two numbers in a MACRO?
What will be your course of action for a push operation?
What does %p mean c?
What are keywords c?
What is extern variable in c with example?
Which is more efficient, a switch statement or an if else chain?
If null and 0 are equivalent as null pointer constants, which should I use?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
What is merge sort in c?
What does c mean before a date?
What is #line in c?
How can you call a function, given its name as a string?