Pattern 3

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