patternprogram_28 softethics

Pattern 28

C

#include<stdio.h>

int main()
{
  char i,j;

  for(i='E'; i>='A'; i--)
  {
    for(j='E'; j>='A'; j--)
    {
      printf("%c",i);
    }
    printf("\n");
  }
  return 0;
}

C++

Java

C#

Python

Tutorial (YouTube)

5 1 vote
Rate this Program
Subscribe
Notify of
guest


0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments