Program in C To Print Mirrored Rhombus, Parallelogram Star Pattern

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

#include <stdio.h>
int main()
{
    int i, j;
    for(i=1; i<=5; i++)
    {
        //Prints trailing spaces 
        for(j=1; j<i; j++)
        {
            printf(" ");
        }
        for(j=1; j<=5; j++)
        {
            printf("*");
        }
        printf("\n");
    }
    return 0;


/* 2. Program to print the following output
********************
     ********************
          ********************
               ********************
                    ********************
*/

#include <stdio.h>
int main()
{
    int i, j;
    for(i=1; i<=5; i++)
    {
        //Prints trailing spaces
        for(j=1; j<i; j++)
        {
            printf(" ");
        }
        for(j=1; j<=20; j++)
        {
            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 !