Computer Science, asked by AtiyaShahab, 5 months ago

Nested Loop
* * * * *
* * * *
* * *
* *
*​

Answers

Answered by jeonjk0
1

Answer:

#include <stdio.h>

int main()

{

int i, j, rows;

/* Input number of rows from user */

printf("Enter number of rows : ");

scanf("%d", &rows);

/* Iterate through rows */

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

{

/* Iterate through columns */

for(j=i; j<=rows; j++)

{

printf("*");

}

/* Move to the next line */

printf("\n");

}

return 0;

}

Similar questions