Answer :
Answer:
This is the answer of this question.
OUTPUT: for (char i='a'; i<='e'; i++)
for (char j='a'; j<='e'; j++)
{
System.out.print(i);
System.out.println(j);
}
Explanation:
for (char outerChar='a'; outerChar<='e'; outer Char++){
for (char innerChar='a'; innerChar<='e'; inner Char++){
cout << outerChar << innerChar << "\n";
}
}
This is the explanation of this program