https://code.sololearn.com/czaFSWL03dh1/?ref=app
/*
12345
1234
123
12
1
*/
#include
int main()
{
int i, j, k, l, n;
printf(“Enter the number of lines to be printed: “);
scanf(“%d”, &n);
printf(“\n”);
for (i = n; i >= 1; i–)
{
for (j = 1; j <= i; j++)
printf("%d", j);
printf("\n");
}
return 0;
}

Leave a comment