Hi all. I'm attempting to output all of the possible combination from "a" to "zzzz" and I'm wondering if theres an easy way of doing that. As an example output would be ...
a
b
c
....
z
aa
ab
ac
....
az
ba
bb
...
and so on..
Is there a way to just have a binary or hex value, cast it as an ascii to get your first value, then increment it and cast it again.. and so on?
Any help would be much appreciated.