Top

Discussion

The output of the code below is

void m(int k)
    {
        printf("hi");
    }
    void m(double k)
    {
        printf("hello");
    }
    void main()
    {
        m(3);
    }

 

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

Answer: C

No answer description available for this question.

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

Post your comment