You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
448 B
C

/*
* * * *
* * *
* *
*
*/
#include<stdio.h>
int main()
{
int i,j,n;
printf("Enter no. of row: ");
scanf("%d",&n);
for(i=1; i<=n; i++)
{
for(j=1; j<i; j++)
{
printf(" ");
}
for(j=i; j<=n; j++)
{
printf("* ");
}
printf("\n");
}
return 0;
}