Output of the below code is

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

Posted on by