#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 is void c?
What is a rvalue?
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
Explain can the sizeof operator be used to tell the size of an array passed to a function?
Where static variables are stored in c?
What is calloc in c?
What does s c mean in text?
Why we use stdio h in c?
Write a program to know whether the input number is an armstrong number.
What is volatile variable in c?
Why doesnt the call scanf work?
What is memory leak in c?
Can we declare function inside main?
How do I read the arrow keys? What about function keys?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?