Next, this is where it gets confusing. I have to create a virtual creature by storing a letter into a random position in the array (the array can be up to 20x20 in size). Then make a function that searches the array for creatures, so it would search for that character. When it finds a creature, it should randomly decide to either move the creature to an adjacent position, or have it stay where it is. After, it should ask the user to create a new creature, or quit.
So how would I go about adding & modifying the current code to achieve what is listed above?
Here is how you can create an array, put in a 'C'reature, find it and display its position. To move it in a direction, you could create a random number of 1 to 4. If it's a 1, you could subtract from the row location, and make array[a-1][b] to equal 'C', and array[a][b] to become a '0', to remove the creature. A 2, you move the creature one space to the right, etc. Remembering always to remove it from the original location. I'll let you work on the rest of your program.
Ask again with your new code, with whatever problems you're facing.