#define MAX 3
main()
{
printf("MAX = %d
",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
}
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
What are the 5 types of inheritance in c ++?
Write down the program to sort the array.
Explain what is wrong with this program statement? Void = 10;
what does exit() do?
Is fortran faster than c?
Is there a way to jump out of a function or functions?
Why shouldn’t I start variable names with underscores?
Why do we need a structure?
What is the benefit of using an enum rather than a #define constant?
How to declare a variable?