Hi. I'm working on an assignment which asks me to translate a sentence given by the user into "chicken language"(I think this is only valid in the language spoken in my country, which is Romanian). Basically what this means is after every vowel(a e i o u) I must insert the letter 'p' followed by the respective vowel. Example: "How you doin'?" translates into "Hopow yopoupu dopoipin'?". I must achieve this by USING POINTERS. What I am having trouble with is actually changing the value of what the pointer points to into what I need. If the pointer meets an 'e' I must change the 'e' to 'epe', so *p becomes *p+p+*p. How can I express this? Check line 10.