Reverse Right Triangle Star Pattern Program in C

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

#include <stdio.h>
int main()
{
    int i, j;
    for(i=1; i<=5; i++)
    {
        for(j=i; j<=5; j++)
        {
            printf("*");
        }
        //Moves to the next line/row
        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 !