I try to create a Alphabet series like
a,b,c,...z,aa,ab,ac,ad,ae,af,...,az,ba,bb,bc,...,bz,..zz,aaa,aab,aac..
up to given number(N)
but when i try to create it using for loops
, i have created one for loop
each second character in the element
that means to print a..z - loop1, aa
for every second letter like a
, i write a new for loop
is it is possible to create this type series with for loops...
thanks in advance...