Courses
Sale
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.6K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
C++
3.8K+ articles
C++ Programs
1.5K+ articles
C Language
1.3K+ articles
C Programs
441+ articles
pattern-printing
172+ articles
C Pattern Programs
31 posts
Recent Articles
Case-Insensitive String Comparison in C++
Last Updated: 23 July 2025
In C++, strings are sequences of characters that are used to store text data which can be in both uppercase and lowercase format. In this article, we will learn how we can...
read more
C++
Picked
C++-Misc C++
cpp-strings
C Pattern Programs
CPP Examples
C program to print name pattern
Last Updated: 23 July 2025
The printing of patterns is the most common and interesting problem. This C program prompts users to input their names and transform each letter of the name into a visuall...
read more
C Programs
C Language
C Pattern Programs
C++ Program To Print The Diamond Shape
Last Updated: 18 August 2026
A diamond pattern in C++ can be printed by combining increasing and decreasing star patterns using nested loops. The pattern is formed by controlling the number of spaces ...
read more
C++ Programs
C++
C Pattern Programs
C Program to Print Number Pattern
Last Updated: 23 July 2025
A number pattern involves printing numbers in a specific arrangement or shape, often in the form of a pyramid, triangle, or other geometric shapes. They are great for prac...
read more
C Programs
C Language
pattern-printing
C Pattern Programs
C Program To Print Hollow Pyramid Patterns
Last Updated: 13 December 2024
The Hollow Pyramid patterns are the variation of pyramid patterns where only the outer edges are filled with characters but the interior is left empty. In this article, we...
read more
C Programs
C Language
Picked
C Pattern Programs
C Program To Print Hollow Diamond Pattern
Last Updated: 10 December 2024
The Hollow Diamond Pattern is a variation of the diamond pattern where only the edges of the diamond are filled with characters and the inside remains empty. This creates ...
read more
C Programs
C Language
Picked
C Pattern Programs
C Program For Printing 180 Degree Rotation of Simple Half Left Pyramid
Last Updated: 30 December 2024
The 180° Rotation of a Simple Half Left Pyramid is a pattern where the base of the pyramid is aligned with the bottom, and the entire structure appears rotated by 180°. Th...
read more
C Programs
C Language
Picked
C Pattern Programs
C Program to Print Right Half Pyramid Pattern
Last Updated: 10 December 2024
The Right Half Pyramid Pattern is a triangular pattern consists of rows where each row contains an increasing number of characters. The number of characters starts from 1 ...
read more
C Programs
C Language
Picked
C Pattern Programs
C Program For Printing Right Half Pyramid Pattern
Last Updated: 15 December 2024
A half-right pyramid consists of rows with sequential stars, numbers or characters arranged in a triangular shape. The first row has one character, the second row has two,...
read more
C Programs
C Language
Picked
C Pattern Programs
C Program To Print Character Pyramid Pattern
Last Updated: 11 December 2024
Pyramid patterns is a classic logical programming exercise where a triangular looking pattern is printed by treating the output screen as a matrix and printing a given cha...
read more
C Programs
C Language
Picked
C Pattern Programs
C Program To Print Continuous Character Pyramid Pattern
Last Updated: 22 September 2022
There are 2 ways to print continuous character patterns in C i.e:Using for loopUsing while loopInput:rows = 5Output: AB CD E FG H I JK L M N O1. Using for loopApproach 1: ...
read more
C Programs
C Language
Picked
C Pattern Programs
C++ Program To Print Right Half Pyramid Pattern
Last Updated: 17 August 2026
The right half pyramid is a simple pattern-printing problem in C++ that uses nested loops to print a growing number of stars in each row. It is useful for understanding lo...
read more
C++ Programs
C++
Picked
C Pattern Programs
C++ Program To Print Hollow Star Pyramid Diamond Shape Pattern
Last Updated: 18 August 2026
A hollow diamond pattern is a star pattern in which only the boundary of the diamond is printed, while the inside is filled with spaces. The pattern is formed by combining...
read more
C++ Programs
C Language
Picked
C Pattern Programs
C Program To Print Diamond Pattern
Last Updated: 10 December 2024
The Diamond Pattern is a symmetrical shape where the number of characters increases up to the centre and then decreases forming a diamond-like structure. It can be visuali...
read more
C Programs
C Language
Picked
C Pattern Programs
C Program To Print Reverse Floyd's Pattern
Last Updated: 15 December 2024
The Reverse Floyd's Triangle Pattern prints numbers or characters in reverse order, starting with the largest at the top and decreasing as the rows progress. Basically, it...
read more
C Programs
C Language
Picked
C Pattern Programs
1
2
3
✕