Top

Discussion

The output of the code below is

int *m();
    void main()
    {
        int k = m();
        printf("%d", k);
    }
    int *m()
    {
        int a[2] = {5, 8};
        return a;
    }

 

  • A.5
  • B.8
  • C.Nothing
  • D.Varies

Answer: D

No answer description available for this question.

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

Post your comment