RandWord Version 1.0 Description: Generates random pronouncable strings with user specified lengths. Not necessarily words, just odd gibberish to say in math class. How it works: Program contains a list for each letter of the alphabet. Each list contains numbers in between 1 and 26. These numbers reference a position in the alphabet for a letter, the numbers basically determining what letter is allowed to follow the letter of the list. If one does not like the way the program is generating words, one can simply change the lists to allow and disallow different letter combinations (2-letter combinations, specifically). Problems: Problems center around allowable letter combinations. Depending on what random values are generated, it is possible to generable an unpronouncable string, like "smpel" (sm is allowed for sounds like small, mp is allowed for sounds like temp... etc). This happens from time to time, but mostly the are pronouncable, and remember that you can edit alphabetical lists to allow and disallow combinations. Other issues: Programming could be tidied up or improved. Feel free to edit and submit improved versions wherever if you like. Tried to use a while loop to control string length but wouldn't work for some reason, so was forced to use goto's and label's, oh well. Generated words are stored in Str4, separated by the colon character that begins each word. You change the string or stop storing completely on the last line of the program. Contact or Comments: e-mail leeroy_beckerton@hotmail.com for any suggestions, criticism, or hate mail.