patternprogram_88 softethics

Pattern 88

C

#include<stdio.h>

int main()
{
  int i,j;

  for(i=4; i>=0; i--)
  {
    for(j=0; j<=i; j++)
    {
      printf("%c",j+65);
    }
    printf("\n");
  }
  return 0;
}

C++

Java

C#

Python

Tutorial (YouTube)

Useful ASCII Tutorial

5 1 vote
Rate this Program
Subscribe
Notify of
guest


0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments