329 views
0 votes
0 votes
int f(int &x, int c)
{
c=c-1;
if(c==0) return 1;
x=x+1;
return f(x,c) * x;
}
What will be the output for f(p,p), if p is initialized to 4.

1 Answer

Related questions

1 votes
1 votes
1 answer
3
. asked Apr 2, 2017
1,584 views
What will be the output of the following C program? If you think it will give a runtime error, you need to mention it. In either case,your answer must include proper just...