Program that prints triangle of numbers in reverse pattern in C Programming


#include
#include
void main()
{
int i,n,j;
clrscr();
printf("\n Please Give The Value of N: ");
scanf("%d",&n);
for(i=n;i>=1;i--)
{
for(j=i;j>=1;j--)
printf("%d ",j);
printf("\n");
}
getch();
}









****************************** OUTPUT *********************************

Please Give The Value of N: 5


5 4 3 2 1
4 3 2 1
3 2 1
2 1
1

No comments:

Post a Comment