ad

Friday, March 21, 2025

C Program to Print Full Pyramid of star pattern

C Program 

C Program  to Print Full Pyramid of star pattern

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 :- 

C Program  to Print Full Pyramid of star pattern




Related Post :-

free online learn C programming-course

C Program print Inverted Right Half Pyramid Star Pattern

No comments:

Post a Comment