Monday, June 18, 2012

To print the pattern


/* To print the pattern */

#include<stdio.h>

#include<conio.h>

void main()

{

  int i,j,s=4;

  clrscr();

  for(i=1;i<=4;i++)

  {

    for(j=1;j<=s;j++)

    {

      printf(" ");

    }

    s--;

    for(j=1;j<=2*i-1;j++)

    {

      printf("*");

    }

    printf("\n");

  }

  getch();

}

 

OUTPUT

      *

    ***

  *****

 *******

 

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.