Contact: aviboots(AT)netvision.net.il
39,950 questions
51,892 answers
573 users
#include <iostream> #include <algorithm> int main() { std::string s = "c++ java c python c# php"; std::replace(s.begin(), s.end(), 'p', 'X'); std::cout << s; } /* run: c++ java c Xython c# XhX */