Pattern 4 : C program to print Pyramid star pattern
Introduction:
Write a C Program to print the pyramid pattern using stars. The patterns contains the stars and spaces.
Here is how the output pattern should look like
*
* *
* * *
* * * *
* * * * *
Pyramid Pattern Explanation :
This program is very similar to our last program i.e Triangle Star pattern. The main difference between these two programs is Spaces. By adjusting the spaces, we will get different types of patterns in C programming so try to play with these programs.
Pyramid Pattern Program :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#include<stdio.h> int main() { int i,j,n; printf("Enter how many rows you want: "); scanf("%d",&n); for(i=1;i<=n;i++) { for(j=1;j<=(n-i);j++) printf(" "); // Only one space for(j=1;j<=i;j++) printf("* "); // one star and one space printf("\n"); } return 0; } |
Output:
Output of Pyramid Pattern program |
Similar Star pattern programs:
- Basic star pattern program (The square pattern with stars).
- Triangle star pattern program.
- Triangle star pattern program with Spaces.
More C programs :
- Program to calculate Maximum of three numbers.
- What are Prime Number and C program to Check given number is Prime or Not
- Check given Number is Prime or not Using Square Root(sqrt) Function.(Efficient way)
- C Program to generate prime numbers between two numbers
- C Program to generate first N prime numbers.
- C program to Calculate percentage of student.
- C Program to check given year is the leap or not.
- C Program to convert Temperature.
- C program to understand type conversation.
- Finding Largest of two numbers using the conditional operator in C.
- C program to calculate the simple Interest,
- C program to understand Size of Operator.
- 200+ C Programs.
C Tutorials with simple Examples:
- Arithmetic Operators with Examples.
- Arithmetic operators priority and it’s Associativity.
- Modulus Operator and Hidden Concepts of Modulus Operator.
- Precedence Table or Operators Priority Table.
- Assignment Operator, Usage, Examples
- Increment Operator and Different types of Increment operators Usage with Examples.
- Decrement Operator and Different types of Decrement operators with Examples.
- Logical or Boolean Operators.
2 Responses
[…] We also discussed another way to create Pyramid Pattern in the following article – Pattern 4 : C program to print Pyramid star pattern – SillyCodes […]
[…] Pattern 4: Pyramid Star Pattern Program […]