#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 bubble sort technique in c?
What is define directive?
Does c have function or method?
Describe the order of precedence with regards to operators in C.
Why is c called c not d or e?
Why we not create function inside function.
What is malloc return c?
Why malloc is faster than calloc?
What is the usage of the pointer in c?
Explain what happens if you free a pointer twice?
What functions are used in dynamic memory allocation in c?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
What is a buffer in c?
What does sizeof function do?
If I have a char * variable pointing to the name of a function ..