belongs to collection: C Programs
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
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Let's see the c example to print alphabet triangle.
Output: