Q:

C Program to print Alphabet Triangle

belongs to collection: C Programs

0

There are different triangles that can be printed. Triangles can be generated by alphabets or numbers. In this c program, we are going to print alphabet triangles.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Let's see the c example to print alphabet triangle.

#include<stdio.h>    
#include<stdlib.h>  
int main(){  
  int ch=65;    
    int i,j,k,m;    
  system("cls");  
    for(i=1;i<=5;i++)    
    {    
        for(j=5;j>=i;j--)    
            printf(" ");    
        for(k=1;k<=i;k++)    
            printf("%c",ch++);    
            ch--;    
        for(m=1;m<i;m++)    
            printf("%c",--ch);    
        printf("\n");    
        ch=65;    
    }    
return 0;  
}  

Output:

     A
    ABA
   ABCBA
  ABCDCBA
 ABCDEDCBA

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C Program to print Number Triangle... >>
<< C Program to convert Decimal to Binary...