#include #include int main() { char p[] = " Welt"; char q[] = "Hallo"; std::swap_ranges(p, p+5, q); std::cout << p << q << '\n'; }