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);
}
β
Correct Answer: (B)
10 5