#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's a good way to check for "close enough" floating-point equality?

620


how to count no of words,characters,lines in a paragraph.

3899


Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.

696


What is the g value paradox?

641


How many types of functions are there in c?

581






Between macros and functions,which is better to use and why?

1565


What is the significance of c program algorithms?

676


Why do we use static in c?

629


What is the -> in c?

579


What does *p++ do?

580


7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.

2215


How important is structure in life?

583


Explain the ternary tree?

597


Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?

596


the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....

22195