Computer Science, asked by vishnunair2231, 8 months ago

9
79
579
3579
13579
Do this program in nested for loop

Answers

Answered by thakursspingh
2

Answer:

loop ki meaning+7753 uski Osgood

Answered by KajalBarad
2

This is the program in C for nested loop

#include <stdio.h>// this is the header file

int main()

{

int i,j;// declaration of variable i,j

for(i=1;i<=9;i+=2)

{

for(j=i;j<=9;j+=2)

{

printf("%d",j);

}

printf("\n");

}

return 0;

}

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

Syntax for Nested For loop:

for ( initialization; condition; increment ) {

for ( initialization; condition; increment ) {

// statement of inside loop

}

// statement of outer loop

}

Similar questions