#define MAX 3
main()
{
printf("MAX = %d
",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
}
Answer Posted / chinnu
MAX=3
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Implement bit Array in C.
What is a pointer in c?
When should a type cast be used?
What happens if you free a pointer twice?
What is the deal on sprintf_s return value?
Explain what is the benefit of using #define to declare a constant?
What is a double c?
What is volatile variable in c?
What is the purpose of macro in C language?
What is hash table in c?
What does sizeof function do?
Difference between constant pointer and pointer to a constant.
Can we replace the struct function in tree syntax with a union?
What should malloc(0) do?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above