This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Schrijf een functie vervang2 () die hetzelfde doet als bij onderdeel a. | |
Maak bij het schrijven van deze functie gebruik van de functies find() en | |
replace() uit de klasse string. | |
Prototype: | |
void vervang2( string& s, char bron, char doel ); | |
*/ | |
#include <iostream> | |
#include <string> |