Create a Pyramid with Alphabets in C Language. It is very easy and simple program. 1st row of the pyramid fill with A, 2nd row with B and so on.
Here column number is same as (row number * 2 ) - 1. It is Pyramid which numbers are decrease in each row until the column number is equal to the row number.
It is Pyramid which column numbers are increase in each row until it is less then equal to row number. After then it is decrease. total number of row is 6.
Here column number is same as (row number * 2 ) - 1 and the spaces are present at the right side of the character is equal to the total no of row - current row
Here column no is equal to row no and the spaces are equal to the (total no of row - current row). It is Left Side Triangle. Add a space after asterisk.
Here column number is same as row number and the spaces are present at the right side of the character is equal to the (total no of row - current row).
Here column number is same as row number and as spaces are present at the right side of the character then we can ignore it. It is Left Side Triangle.