In this tutorial, we will discuss the concept of C program to display alphabet pyramid pattern
In this post, we will learn how to displayed Pyramid triangle alphabet pattern using for loop or nested for loop in C programming language
here, we displayed some alphabet Pyramid triangle pattern with coding using nested for loop and also we get input from user using scanf() function in C language
the user can provide numbers as they wish and get the alphabet pattern according to their input
Program 1
#include <stdio.h> #include <stdlib.h> int main() { int i,j,k,m,rows; printf("Enter the number of rows\n"); scanf("%d",&rows); int ch=65; for(i=1; i<=rows; i++){//parent for loop for(j=rows; j>=i; j--){ printf(" ");//print space for pyramid shape } for(k=1; k<=i; k++){ printf("%c",ch++); }//make right site of pyramid ch--; for(m=1; m<i; m++){ printf("%c",--ch); }//make left site of pyramid printf("\n"); } getch(); return 0; }
When the above code is executed, it produces the following results
Enter the number of rows 6 A ABA ABCBA ABCDCBA ABCDEDCBA ABCDEFEDCBA
Program 2
#include <stdio.h> #include <stdlib.h> int main() { int i,j,rows; printf("Enter the number of rows\n"); scanf("%d",&rows); for(i=1; i<=rows; i++){//parent for loop for(j=1; j<=rows-i; j++){ printf(" ");//print space for pyramid shape } for(j=i; j>0; j--){ printf("%c",(char)(j+64)); }//make right site of pyramid for(j=2; j<=i; j++){ printf("%c",(char)(j+64)); }//make left site of pyramid printf("\n"); } getch(); return 0; }
When the above code is executed, it produces the following results
Enter the number of rows 6 A BAB CBABC DCBABCD EDCBABCDE FEDCBABCDEF
Similar post
Java program triangle alphabet pattern using while loop
C++ program triangle alphabet pattern using while loop
Java program to display Binary Pyramid pattern
C++ program to display Binary Pyramid pattern
C program to display hollow diamond star pattern
C++ program to print hollow diamond star pattern
Java code to print Rhombus and hollow Rhombus star pattern
C program to print Mirrored Rhombus hollow Mirrored Rhombus star pattern
C++ program to printRhombus hollow Rhombus star pattern
Java program to print Parallelogram star pattern using while loop
C program to print Parallelogram star pattern using for loop
C++ program to print mirrored Parallelogram star pattern using for loop
Suggested for you
Nested for loop in Java language
Nested while loop in Java language
Nested for loop in C++ language
Nested while loop in C++ language
Nested while loop in C language
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…
Program to count vowels, consonants, words, characters and space in Java In this article, we…
How to print multiplication table using Array in C++ language In this post, we will…
C Program to multiplication table using Array In this tutorial , we will discuss about…
Java program to check odd or even using recursion In this tutorial, we discuss a…