599 views
0 votes
0 votes
Please mention proper approach to solve similar questions

 

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
3
amit166 asked Sep 11, 2018
206 views
Q2.int A(int){if(n<=2) return 1;elsereturn (A(√n)+n);} time complexity
0 votes
0 votes
2 answers
4
amit166 asked Sep 11, 2018
336 views
Q.1 int A(int n){if(n==2) return 1;else{for(int j=1;j<=n;j++)printf(" * ");return(A(√n));}} Time complexity