C program to print a pattern of an inverted right triangle using star

C program to print a pattern of an inverted right triangle using star

This C program is to print a pattern of an inverted right triangle using star.

* * * * *
* * * *
* * *
* *
*

If you need a dry run of the program or any other query, then kindly leave a comment in the comment box or mail me, I would be more than happy to help you.

Program

#include<stdio.h>
void main()
{
    int i,j,n;
 
    printf("Enter value of n\n");
    scanf("%d",&n);
    
    for(i=1;i<=n;i++)
    {
        for(j=i;j<=n;j++)
        {
            printf("* ");
        }
        printf("\n");
    }
}

Output

Share Me!