write a program in c of the lower triangle of natural numbers.

#include<stdio.h>
#include<conio.h>
main()
{
 int i,j;
clrscr();
 for(i=9;i>=1;i--)
{
  for(j=1;j<=9;j++)
{
  printf("%d",j);
}
  printf("\n");
}
return (0);
}


output:-
123456789

12345678
1234567
123456
12345
1234
123
12
1