Modify our vowel-counting program so that it counts the number of occurrence of the following two-character sequences: ff,fl and fi |
|
|
'f'
, you should also read the next character to see if it's an f, l, or i.
|
|
|
|
constexpr char ff = 'ff', fl = 'fl', fi = 'fi';
a character is a character not two characters.