Top

Discussion

#include 
#define a 10
int main()
{
  printf("%d ",a);
 
  #define a 50
 
  printf("%d ",a);
  return 0;
}

 

  • A.Compiler Error
  • B.10 50
  • C.50 50
  • D.10 10

Answer: B

No answer description available for this question.

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

Post your comment