Hollow Pyramid Pattern C Programming
- Home
- pyramid triangle
- Hollow Pyramid Pattern C Programming
- On
- By
- 0 Comment
- Categories: pyramid triangle, star pattern
Hollow Pyramid Pattern C Programming
Hollow Pyramid Pattern C Programming
In this tutorial, we will discuss Hollow Pyramid Pattern C Programming.
In this topic, we will learn how to create this pattern and inverted pyramid pattern in this language
Hollow Pyramid pattern 1
#include <stdio.h>
#include <stdlib.h>
int main()
{
int rows;
printf("Enter the number of rows to Pyramid: ");
scanf("%d",&rows);
int i,j,k;
for(i=1; i<=rows; i++){//Print each row
for(j=i; j<rows; j++){//Print space for Pyramid shape
printf(" ");
}
for(k=1; k<2*i; k++){//Print "*"
if(i==rows || (k==1 || k==2*i-1))
printf("*");
else
printf(" ");
}
printf("\n");//Move to the next line for print
}
getch();
return 0;
}

Hollow Pyramid pattern 2
#include <stdio.h>
#include <stdlib.h>
int main()
{
int rows;
printf("Enter the number of rows to Pyramid: ");
scanf("%d",&rows);
int i,j,k;
for(i=rows; i>=1; i--){//Print each row
for(j=rows; j>i; j--){//Print space for Pyramid shape
printf(" ");
}
for(k=1; k<2*i; k++){//Print "*"
if(i==rows || (k==1 || k==2*i-1))
printf("*");
else
printf(" ");
}
printf("\n");//Move to the next line for print
}
return 0;
}
Suggested for you
Do-while loop in Java language
Similar post
Java program to print star pyramid pattern
C program to print star pyramid pattern
C++ program to print star pyramid pattern
Python program to print star pyramid pattern
Floyd’s triangle number pattern using for loop in C
Floyd’s triangle pattern using nested for loop in Java
Floyd’s triangle pattern using nested while loop in Java