patternprogram_87 softethics

Pattern 87

C

#include<stdio.h>

int main()
{
  int i,j;

  for(i=0; i<=4; i++)
  {
    for(j=4; j>=i; j--)
    {
      printf("%c",i+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