In this tutorial, we will discuss a simple concept of te C code to print Double pyramid star pattern
In this post, we will learn how to create double (integrated) pyramid star pattern in C language.
We can use for loop, while loop or do while loop to display different integrated star patterns.
Here, we will use for loop to print different Double(integrated) pyramid star patterns
Program 1
#include <stdio.h> #include <stdlib.h> int main() { int rows,i,j; printf("Enter the number of rows: "); scanf("%d",&rows); for(i=1; i<=rows; i++){ //print upper part for(j=i; j<=rows; j++){ printf("*");//print star } printf("\n"); } for(i=rows-1; i>=1; i--){ //print lower part for(j=i; j<=rows; j++){ printf("*");//print star } printf("\n"); } getch(); return 0; }
When the above code is executed, it produces the following result
Enter the number of rows: 6 ****** ***** **** *** ** * ** *** **** ***** ******
Program 2
#include <stdio.h> #include <stdlib.h> int main() { int rows,i,j,k; printf("Enter the number of rows\n"); scanf("%d",&rows); for(i=1; i<=rows; i++){ //print upper part for(j=1; j<=i; j++){ printf(" "); } for(k=i; k<=rows; k++){ printf("*");//print star to upper part printf(" "); } printf("\n");//move to next line } for(i=rows-1; i>=1; i--){ //print lower part for(j=1; j<=i; j++){ printf(" "); } for(k=i; k<=rows; k++){ printf("*");//print star to lower part printf(" "); } printf("\n");//move to next line } getch(); return 0; }
When the above code is executed, it produces the following result
Enter the number of rows: 6 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Program 3
#include <stdio.h> #include <stdlib.h> int main() { int rows,i,j; printf("Enter the number of rows: "); scanf("%d",&rows); for(i=1; i<=rows; i++){ //print upper part for(j=1; j<i; j++){ printf(" ");//print space } for(j=i; j<=rows; j++){ printf("*");//print star to upper part } printf("\n");//move to next line } for(i=rows-1; i>=1; i--){ for(j=1; j<i; j++){ printf(" ");//print space } for(j=i; j<=rows; j++){ //print lower part printf("*");//print star to lower part } printf("\n"); } return 0; }
When the above code is executed, it produces the following result
Enter the number ofrows: 6 ****** ***** **** *** ** * ** *** **** ***** ******
Program 4
#include <stdio.h> #include <stdlib.h> int main() { int rows,i,j,k; printf("Enter the number of rows: "); scanf("%d",&rows); for(i=1; i<=rows; i++){ //print upper part for(j=1; j<=rows-i; j++){ printf(" "); } for(k=1; k<=i; k++){ printf("*");//print star to upper part printf(" "); } printf("\n"); } for(i=1; i<=rows-1; i++){ //print lower part for(j=1; j<=i; j++){ printf(" "); } for(k=1; k<=rows-i; k++){ printf("*");//print star to lower part printf(" "); } printf("\n"); } getch(); return 0; }
When the above code is executed, it produces the following result
Enter the number of rows: 6 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Similar post
C++ code to Double pyramid star pattern
Java code to Double pyramid star pattern
Java program to Display diamond number pattern using while loop
C++ code to Display diamond number pattern using while loop
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
Hollow pyramid triangle pattern in C++ language
Rhombus pattern in Java using for loop
Rhombus pattern in C using while loop
Rhombus pattern in C++ using do-while loop
Display Pyramid star pattern in C
Display Pyramid star pattern in Java
Parallelogram and Hollow Parallelogram star pattern in Java
Parallelogram and Hollow Parallelogram star pattern in C Language
C++ program to Display diamond number pattern using while loop
C program to Display diamond number pattern using while loop
Suggested for you
Nested for loop in Java language
Nested for loop in C++ language
Nested for loop in Python language
If statements in Java language
Nested if statements in Java language
Nested while loop in Java language
Nested while loop in C language
Explanation of one dimensional array In this post, we will discuss the concept of "Explanation…
Python program to calculate the sum of odd and even numbers in a list In…
Python code to Calculate sum of odd and even in a list In this tutorial,…
How to find reverse number using method In this article, we will discuss the concept…
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…