C Program
C Program to Print Full Pyramid of star pattern
Example
#include<stdio.h>
void main ()
{
int i,space,r,k=0;
printf("enter the number");
scanf("%d",&r);
for(i=1;i<=r;i++,k=0)
{
for(space=1;space<=r-i;space++)
{
printf(" ");
}
while(k !=2*i-1){
printf("*");
++k;
}
printf("\n");
}
return 0;
}
C Program to Print Full Pyramid of star pattern
Program Output :-
Related Post :-
No comments:
Post a Comment