I'm trying to make something that:
prints only the uppercase letters
prints every second letter
replaces all vowels with underscores
finds the number of vowels
and the position of every vowel.
Problem is I'm not entirely sure where to start
What I'd like to know is:
how can I scan each character in a string?
how do I replace characters within the string?
and how do I find what position a certain character is within a string?
The only thing I've figured out is how to count how many letters are in a string.