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.

33 lines
470 B
C

/*
*
**
* *
* *
* *
* *
* *
* *
* *
* *
* *
************
--*/
#include<stdio.h>
void main()
{
int num,r,j,s;
printf("Enter no of rows: ");
scanf("%d", &num);
printf("\n*\n");
for(r=1; r<=num; r++)
{
printf("*");
for(s=1; s<r; s++)
printf(" ");
printf("*\n");
}
for(j=1; j<=num+2; j++)
printf("*");
}