Contact Learn C
Copy

Program 51:Reverse Right Angle Pattern 1

Program 51:
 
#include<stdio.h>
main()
{
    int i,j,num,k=1;
    printf("Enter number of rows\n");
    scanf("%d",&num);
    for(i=num;i>=1;i--)
    {
    
        for(j=i;j>=1;j--)
        {
            printf("%d",j);
           
        }
        
    printf("\n");
    }
}
Explanation:

//Coming Soon...

Output:

Reverse Right Angle Pattern 1
Donate

Download App and Learn when ever you want

Get it on PlayStore
Get it on Amazon App Store
Get it on Aptoide