К примеру, можно просто заменить некоторые буквы(но это не совсем правильно...).
#include
using std::cout;
using std::endl;
int main()
{
char s[] = "Mother plays with the child";
cout << s << endl;<br>
s[0] = 'F';
s[1] = 'a';
cout << s << endl;<br>
return 0;
}