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

Answer Posted / rohit

it will give a compile error..

Is This Answer Correct ?    4 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is assert and when would I use it?

759


How can a string be converted to a number?

737


Why c is a mother language?

737


What are types of functions?

751


Why is c called c not d or e?

833


What is ctrl c called?

778


What is string length in c?

816


Explain what standard functions are available to manipulate strings?

805


write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...

1697


Explain how do you search data in a data file using random access method?

896


What is your stream meaning?

843


Write a code of a general series where the next element is the sum of last k terms.

794


Is there any data type in c with variable size?

845


What is the use of sizeof () in c?

755


Which control loop is recommended if you have to execute set of statements for fixed number of times?

1080