#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=i ; j<rows ; j++)
        {
            printf(" ");
        }
        for(j=1 ; j<=2*i-1 ; j++)
        {
            printf("*");
        }
        printf("\n");
    }
    return 0;
}

OUTPUT :

Enter the number of rows : 3

    *
  ***
*****


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/