Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <cstring>
- #include <iostream>
- #include <algorithm>
- using namespace std;
- string ObrniString (string s)
- { string pom;
- remove_copy(s.rbegin(),s.rend(), back_inserter(pom),' ');
- return pom;
- }
- int main ()
- {
- cout<<ObrniString("Selma je bila ovdje.");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement