#define MAX 3
main()
{
printf("MAX = %d
",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
}
Answer Posted / chinnu
MAX=3
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Explain high-order and low-order bytes.
Explain how do I determine whether a character is numeric, alphabetic, and so on?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is a const pointer?
Is this program statement valid? INT = 10.50;
What are the types of data structures in c?
What are structural members?
What does the function toupper() do?
How do I swap bytes?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Is it possible to use curly brackets ({}) to enclose single line code in c program?
By using C language input a date into it and if it is right?
What is difference between %d and %i in c?
Which is the best website to learn c programming?
Write a program to check prime number in c programming?