Tagged Questions

2
votes
4answers
762 views

generating random alphabets with some alphabets having a higher frequency of occurence(vc++6.0)

basically i have a function that generates random alphabets .i have done this using the rand() function to generate numbers and them converted them to their corresponding ascii equivalents. but i want ...
0
votes
2answers
157 views

Creating a word from a random set of specific letters

I'm trying to generate a word with a specific set of letters. The first letter of the word must contain the letters P,G,T,K the second A,E,I,O,U I have tried generating them with the code blow with ...