Top

Discussion

What is the output of this program?

#include  
#define x 3
int main()
{
  int i;
  i = x*x*x;
  printf("%d",i);
  return 0;
}

 

  • A.27
  • B.x is not declared
  • C.No output
  • D.Garbage value

Answer: A

No answer description available for this question.

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

Post your comment