Top

Discussion

#include 
#define square(x) x*x
int main()
{
  int x;
  x = 36/square(6);
  printf("%d", x);
  return 0;
}

 

  • A.1
  • B.36
  • C.Compiler Error

Answer: B

No answer description available for this question.

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

Post your comment