#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 / chinnu

MAX=3

Is This Answer Correct ?    4 Yes 1 No

Post New Answer

More C Interview Questions

How do you use a pointer to a function?

0 Answers  


What are multidimensional arrays?

0 Answers  


what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }

4 Answers  


for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float

1 Answers  


Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.

7 Answers   Accenture, Gridco, IBM, Kevin IT, TCS, Vimukti Technologies,






What is typedef example?

0 Answers  


find the minimum of three values inputted by the user

3 Answers  


write a c program to find the roots of a quadratic equation ax2 + bx + c = 0

11 Answers   CSC, St Marys, TATA,


What is the value of uninitialized variable in c?

0 Answers  


what is ram?

3 Answers   TCS,


What are local and global variables?

3 Answers  


Write any data structure program (stack implementation)

1 Answers   HTC,


Categories