I am still working on my word search generator so this pertains to that if you are savvy on my current project.
i am at the point where i need to fill in the puzzle with random letters everywhere that there is '.' still left. (yes i am almost done!)
I think the best way to do this is to generate a pseudo random number to mod by 26 so as to stay in the alphabet and to use the askii value of whatever number is generated...
It does work... is it because you are adding the 'A' ascii number to the the number between 1 and 26 so as to result in a number between 'A' and 'Z' i dont know if that makes sense i really wanna learn though : ]
*edit: I think that must be the reason. Thanks for the help!!!