What I mean is how do i make a loop in C++ that cycles through all possible combinations of letters and numbers (with a limit of course). Like have it start with 0 and next have it be 00, 000, 0000... And then after like 5 digits of zeros have a 1 added (00001) And continue on adding letters.
Ending with "zzzzz"
I realize it would take a long time to list them all but i still want to know what the code would be like.