434 views

1 Answer

Related questions

0 votes
0 votes
1 answer
1
1 votes
1 votes
2 answers
2
Sazia Tabassum asked Oct 14, 2022
593 views
The return value of ace(4) is int ace(int a) { int x=1; static int k=1; if(a==1) return x; for(;k<a;++k) x=x+ace(k)*ace(a-k); return x; }A.15B.4C.10D.Error
0 votes
0 votes
3 answers
3
ramakrushna asked Dec 23, 2021
729 views
What should be the ans. Isn’t the Function initialization should be outside main function? They are given inside main. If declaration would be outside main then ans sho...
1 votes
1 votes
0 answers
4
srestha asked Mar 6, 2019
779 views
void find(int x){ static int i=10,y=0; y=y+i; for(i;i>0;i=i-10){ if(x!=0) find(x-1); else{ printf("%d",y); } } }What will be output printed for find(4)?