#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
What is assert and when would I use it?
How can a string be converted to a number?
Why c is a mother language?
What are types of functions?
Why is c called c not d or e?
What is ctrl c called?
What is string length in c?
Explain what standard functions are available to manipulate strings?
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...
Explain how do you search data in a data file using random access method?
What is your stream meaning?
Write a code of a general series where the next element is the sum of last k terms.
Is there any data type in c with variable size?
What is the use of sizeof () in c?
Which control loop is recommended if you have to execute set of statements for fixed number of times?