#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


Please Help Members By Posting Answers For Below Questions

What is a keyword?

747


Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.

2650


Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.

627


What is the total generic pointer type?

728


What is function prototype in c with example?

580






What is difference between far and near pointers?

613


Explain Basic concepts of C language?

647


Explain modulus operator.

597


Lists the benefits of c programming language?

598


What the different types of arrays in c?

614


Write a Program to find whether the given number or string is palindrome.

614


What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.

3734


Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58

1122


An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode

609


Find duplicates in a file containing 6 digit number (like uid) in O (n) time.

2609