432 views
1 votes
1 votes

1 Answer

Related questions

0 votes
0 votes
1 answer
1
0 votes
0 votes
0 answers
2
Nishi Agarwal asked Mar 10, 2019
499 views
A(n){if(n<1) return (1);else return A(n-2)+B(n-1);}B(n){if(n<=1) return 1;else return B(n-1)+A(n-2);}
2 votes
2 votes
1 answer
3
0 votes
0 votes
0 answers
4
register_user_19 asked Jan 10, 2019
413 views
What is the output of the following code ?void f(int a, int b){printf(“%d”,a+b);}void main(){f((2,3),4);}675None of these