I want to make a BINGO game; however, instead of the usual where one calls out "B1", I want to use words instead. I know, for the most part, how to randomize a given interval of numbers, BUT how would I randomly assign words of a specific alphabetic interval into a bingo square. For example, I want to put 3 words per square, and in the "B" column, only words beginning with a,b,c,d,e. that have already been created in--->
Code:
char BingoWords[WORDS][LENGTH]={aardvark, bee, cat, dog, eel,.......}
Thanks. Hoping for some good advice.