Program in C To Print Hollow Mirrored Inverted Right Triangle Star Pattern

Errorlogger
0
/* Program to print the following output
*****
  *    *
    *  *
      **
        *
*/


#include <stdio.h>
int main()
{
    int i, j;
    for(i=1; i<=5; i++)
    {
        //Prints trailing spaces before star gets printed
        for(j=1; j<i; j++)
        {
            printf(" ");
        }
        //Prints hollow inverted right triangle
        for(j=i; j<=5; j++)
        {
            if(j==i || j==5 || i==1)
            {
                printf("*");
            }
            else
            {
                printf(" ");
            }
        }
        printf("\n");
    }
    return 0;
}

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(30)

Our website uses cookies to enhance your experience. Check Now
Accept !