Tuesday, 21 July 2015

Pattern 7

Write a C program to print the following pattern:

 
    *
   **
  ***
 ****
*****

 

CODE:

#include<stdio.h>
void main()
{
    int i,j,k,n;
    printf("Enter the number of rows: \n");
    scanf("%d",&n);
    for(i=1;i<=n;i++)
    {
        for(j=i;j<n;j++)
        {
            printf(" ");
        }
        for(k=1;k<=i;k++)
        {
            printf("*");
        }
        printf("\n");
    }
}

 
 
OUTPUT:
 
 
 

No comments:

Post a Comment