I have that funtion for generate sequence to the style 'hqhzaw', 'ebcpm', 'qtch', etc. (only letters) and according to 'lenght'
string random_letter(int length) {
string s;
for (int i = 0; i < length; i++) {
s += char(rand() % 26 + 97);
}
return s;
}
I want to generate, using this funtion or some other, array of letters and numbers to the style 'tn4v9k2e0', '8ezt0p3', 5cye7' according to 'lenght'.
Thanks.