MIRRORED RIGHT TRIANGLE STAR PATTERN

Consider the following I/O samples.




SAMPLE INPUT:  5

SAMPLE OUTPUT:   


               


C PROGRAM:  

#include <stdio.h>
int main()
{
    int row,col,n;
    scanf("%d",&n);
    for(row=1; row<=n; ++row)
    {
        // Print spaces
        for(col=row; col<n; ++col)
        {
            printf("  ");
        }
        // Print star
        for(col=1; col<=row; ++col)
        {
            printf("* ");
        }
       printf("\n");
    }
    return 0;
}

OUTPUT:

 





The given source code in C program is short and simple to understand. The source code is well tested in DEV-C++ and is completely error free. 

If you have any feedback about this article and want to improve this, please comment in the comment section.

 

Comments

Popular posts from this blog

C PROGRAM TO PRINT ALL LEAP YEARS IN A GIVEN RANGE

SPARSE MATRIX OR NOT

C PROGRAM TO CHECK BALANCED PARENTHESIS - ( { [