#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
What is the difference between array and pointer?
What is the use of pointers in C?
In c language can we compile a program without main() function?
Describe newline escape sequence with a sample program?
Explain what is the stack?
What is the benefit of using #define to declare a constant?
What is the value of uninitialized variable in c?
What is function prototype?
Is r written in c?
Difference between macros and inline functions? Can a function be forced as inline?
Is c high or low level?
Write a simple code fragment that will check if a number is positive or negative.
What are the functions to open and close file in c language?
Can you please explain the scope of static variables?
Tell me can the size of an array be declared at runtime?