#define MAX 3
main()
{
printf("MAX = %d \n",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
Post New Answer View All Answers
What do you mean by a sequential access file?
Why do we need volatile in c?
Why doesnt the call scanf work?
Tell me what is null pointer in c?
Explain the meaning of keyword 'extern' in a function declaration.
What does 3 mean in texting?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
How to declare a variable?
What is return in c programming?
What is the function of multilevel pointer in c?
What is the use of define in c?
What is structure data type in c?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
Which type of language is c?
How can you return multiple values from a function?