edited by
428 views
1 votes
1 votes
for(i=1; i<=n; i++) {

      for(j=i; j<=n; j++){

         for(k=j+1; k<=n; k++){

               printf("Hello"); } } }

How many times print statement is executed for n=4 and what is the time complexity?
edited by

Please log in or register to answer this question.

No related questions found