#include<iostream>
#include<string>
using namespace std;
int main(){
string song = "sing a song";
cout<<song<<endl;
string rep = "s";
song.replace(11,1,rep);
cout<<song<<endl;
cout<<song.find("song")<<endl;
song.clear();
cout<<song<<endl;
cout<<"Bye phrase you are now officially deleted!\n";
}
Comments
Leave a comment