PYRAMID STAR PATTERN

Consider the following I/O samples.


SAMPLE INPUT:  3

SAMPLE OUTPUT:   

                                    *  
                                          * * 
                                        * * *


            
C PROGRAM:  

#include <stdio.h>
int main()
{
    int row,col,spc,n;
    scanf("%d",&n);
    for(row=1; row<=n; ++row)
    {
        for(spc=1; spc<=n-row; spc++)
        {
            printf("  ");
        }
        for(col=1; col<=2*row-1; ++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

INVERTED PYRAMID STAR PATTERN

C PROGRAM TO PRINT THE REMAINING DAYS AND COMPLETED DAYS FROM A GIVEN DATE