Computer Science, asked by raj128323, 1 year ago

please do the nested loop​

Attachments:

Answers

Answered by rakeshmohata
0

Answer

#include<stdio.h>

int main()

{

int i,j;

for(i=1;i<=5;i++)

{

for(j=5;j>=i;j--)

{

printf("%d \t",j);

}

printf("\n");

}

return 0;

}

Hope this is ur required answer

Proud to help you

Answered by Anonymous
0

Answer:

 nested loop join is a naive algorithm that joins two sets by using two nested loops. Join operations are important for database management

Similar questions