patternprogram_26 softethics

Pattern 26

C

#include<stdio.h>

int main()
{
  char i,j;

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

C++

Java

C#

Python

Tutorial (YouTube)

0 0 votes
Rate this Program
Subscribe
Notify of
guest


0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments