Top

Discussion

Which function definition will run correctly?

  • A.int sum(int a, int b)
       return (a + b);
  • B.int sum(int a, int b)
        {return (a + b);}
  • C.int sum(a, b)
         return (a + b);
  • D.Both (a) and (b)

Answer: B

No answer description available for this question.

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

Post your comment