#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 identifiers in c with examples?
write a program to print data of 5 five students with structures?
Explain what is the benefit of using an enum rather than a #define constant?
What does 1f stand for?
What is #include conio h?
Explain the advantages and disadvantages of macros.
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Explain what is #line used for?
How do c compilers work?
What are the advantages of Macro over function?
What is void pointers in c?
What are the 4 types of programming language?
What is the use of getchar functions?
What is the difference between malloc calloc and realloc in c?
How can I sort more data than will fit in memory?