#include<stdio.h>
int main()
{
    int rows , i , j ;

    printf(" Enter the number of rows :");
    scanf(" %d ", &rows);

    for(i =1; i<=rows ; i++)
    {
        for(j =1 ; j<i ; j++)
        {
            printf(" ");
        }
        for(j =i ; j<=rows ; j++)
        {
            printf("*");
        }
        printf("\n");
    }
    return 0;
}


OUTPUT : 

Enter the number of rows : 4
****
  ***
    **
       *


For Other Programs Visit The WebSite:-   https://www.techapurba.com/

Follow Me On Social Media :-

For tech related videos visit my other website :- https://apurbatechinfo.blogspot.com/