/* Program to print the following output
*********
*******
*****
***
*
*/
#include <stdio.h>
int main()
{
int i, j;
for(i=5; i>=1; i--)
{
//Prints trailing spaces
for(j=i; j<5; j++)
{
printf(" ");
}
//Prints reverse pyramid
for(j=1; j<=(2*i-1); j++)
{
printf("*");
}
printf("\n");
}
return 0;
}