Tuesday, October 21, 2014

Print tree Patters with C L anguage



                                                                  

#include<stdio.h>
#include<conio.h>
int main()
{
 int r,c,sp,n=4;
 for(r=1;r<=2; r++)
 {
  for(sp=1; sp<=n; sp++)
    printf(" ");

  for(c=1; c<=r; c++)
  {
    printf("*");
    printf(" ");
  }
  printf("\n");
  n=n-1;
 }

 for(r=1;r<=3; r++)
 {
  for(sp=0; sp<=n+1; sp++)
    printf(" ");
  for(c=1; c<=r; c++)
  {
    printf("*");
    printf(" ");
  }
  printf("\n");
  n=n-1;
 }

 for(r=1;r<=4; r++)
 {
  for(sp=0; sp<=n+4; sp++)
    printf(" ");
  for(c=1; c<=r; c++)
  {
    printf("*");
    printf(" ");
  }
  printf("\n");
  n=n-1;
 }
 getch();
 return 0;
}

No comments:

Post a Comment