#define MAX 3
main()
{
printf("MAX = %d
",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
}



#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("..

Answer / chandrika

MAX=3

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

Write a program to print “hello world” without using semicolon?

0 Answers  


why do we use # in c-language?

1 Answers  


Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???

2 Answers   TCS,


Explain how does free() know explain how much memory to release?

0 Answers  


program for reversing a selected line word by word when multiple lines are given without using strrev

0 Answers   IBM,






List some of the static data structures in C?

0 Answers  


how to add two numbers without using arithmetic operators?

4 Answers  


What is the real difference between arrays and pointers?

27 Answers   Hexaware, Logic Pro, TCS,


How to print "I Love My India" without using semi colon?

4 Answers  


Explain the difference between exit() and _exit() function?

0 Answers  


write a program for the normal snake games find in most of the mobiles.

0 Answers   Accenture, Wipro,


Explain bitwise shift operators?

0 Answers  


Categories