Q96
Which function definition will run correctly?
A.
int sum(int a, int b)
return (a + b);
return (a + b);
B.
int sum(int a, int b)
{return (a + b);}
Answer{return (a + b);}
C.
int sum(a, b)
return (a + b);
return (a + b);
D.
none of the mentioned
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board