Pattern 5

******
 *****
  ****
   ***
    **
     *
#include<stdio.h>
#include<conio.h>
void main()
{
 int i,j,t,n;
 clrscr();
 printf("enter the value of n :");
 scanf("%d",&n);
 for(i=1;i<=n;i++)
 {
  for(j=1;j<i;j++)
  {
   printf(" ");
  }
   for(t=i;t<=n;t++)
   {
    printf("*");
   }
   printf("\n");
 }
 getch();
}