Skip to content

Instantly share code, notes, and snippets.

/*
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>