Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- GenerateRandomWord(siz){
- new
- c[][]=
- {
- "A","B","C","D","E","F","G","H","I","a","b","c","d","e","f","g","h","i",
- "1","2","3","4","5","6","7","8","9","0","Y","j","J","M","n","v","z","x"
- },
- s[128],
- t
- ;
- errno: strcat(s, c[random(sizeof(c))]);
- if(strlen(s) < siz) goto errno;
- return s;
- }
Advertisement
Add Comment
Please, Sign In to add comment