Interviews Questions, Algorithms, Aptitude, C Interview Program, C Theory Question, Aptitude Tricks, Test Series,

Saturday 1 June 2019

C Program to print Alphabet Triangle


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.

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

0 comments:

Post a Comment