I'm writing a password suggestion program(win32). So what I need to do is first take a user inputted c-string, then manipulate it to exchange certain vowels with numbers, then display this new password. I would also like to count and display the number of characters and display the password length to the user. I have the vowels I would like to change set up in arrays (note I want u to change to 7). I have been told that I could go through the string in a loop and replace each vowel with a number, but I'm not exactly sure how to do that.