266 views
0 votes
0 votes

Its always a confusion how Recursion works with for loop. Explain a brief. 

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
saptarshiDey asked Jan 3, 2019
8,160 views
What will be the worst case time complexity for the following code segment?int count=0,N; for(i=0;i<N*2;i++){ for(j=0;j<i/3;i++){ for(k=0;k<j*j;k++){ count++; } } }Option...
2 votes
2 votes
2 answers
3
Hardik Vagadia asked Aug 20, 2016
1,812 views
For(i=1;i<(1<<n);i++) { Do something }What is the meaning of the expression in the condition part of the for loop?