Computer Science, asked by Imaginator15, 7 months ago

write a program to print a triangle of letter B​

Answers

Answered by candyflipp
1

Explanation:

#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;

}

Similar questions