Top

Discussion

What is the output of this C code?

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

 

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

Answer: C

No answer description available for this question.

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

Post your comment