Top

Discussion

What is the output of this C code?
 

void m();
void n()
{
m();
}
void main()
{
void m()
{
printf("hi");
}
}

 

  • A.hi
  • B.Compile time error
  • C.Nothing
  • D.Varies

Answer: B

No answer description available for this question.

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

Post your comment