C program to print a pattern using nested for loop

C program to print the following pattern

 

*****

****
***
**
*


#include<stdio.h>
void main()
{
 int   i,  j ,  n;

        clrscr();

 printf("Enter the number of rows \n");
 scanf("%d",&n);

    for(i=0;i<=n;i++)
    {
            for(j=i;j<=n;j++)
           {
                  printf("*");
              }
       printf("\n");
    }
getch();
}