A

Admin • 833K Points
Coach

Q. What is the output of C Program with functions?

Code:
int bunny(int,int);
int main()
{
int a, b;
a = bunny(5, 10);
b = bunny(10, 5);
printf("%d %d", a, b);
return 0;
}
int bunny(int i, int j)
{
return (i, j);
}
  • (A) 5 10
  • (B) 10 5
  • (C) 5 5
  • (D) Compiler error
  • Correct Answer - Option(B)
  • Views: 19
  • Filed under category C Programming
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.