#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
How many levels of indirection in pointers can you have in a single declaration?
What is difference between main and void main?
What are types of structure?
How to compare array with pointer in c?
Which is an example of a structural homology?
When is a “switch” statement preferable over an “if” statement?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Array is an lvalue or not?
What is structure pointer in c?
What is the difference between struct and union in C?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
How are pointers declared in c?
When should a type cast not be used?
Write the Program to reverse a string using pointers.
What are the advantage of c language?