You are currently viewing Best Alphabet Triangle Printing in 2023

Best Alphabet Triangle Printing in 2023

Code for Alphabet Triangle

For learning c code, students are advised to practice few basic codes. For learning loop, nested loop you should go through this code. This code is designed for printing Alphabet Triangle.

In C code practice, this Alphabet Triangle printing logic plays a very important role. So I have designed this code as easy as possible for the students. They will be able to understand each and every step very easily. 

Before going for this type of program a student should go through basics of loops, nested loop etc. So that they can easily go through each step with self explanation mode. 

For more code click here. For video tutorial on several topics click here

#include<stdio.h>

int main()
{
int h,i,j;

printf("Enter the height");
scanf("%d",&h);


for(i=1;i<=h;i++)
{
 for(j=1;j<20-i;j++)
  printf(" ");
 for(j=1;j<=i;j++)
  printf("%c ",64+j);
 printf("\n");
}
}

Leave a Reply