Top

Discussion

Predict the output of following program?

#include 
#define MAX 1000
int main()
{
   int MAX = 100;
   printf("%d ", MAX);
   return 0;
}

 

  • A.1000
  • B.100
  • C.Compiler Error
  • D.Garbage Value

Answer: C

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment