There is a standard rotate function found in the algorithm header.
If you want to do this yourself, you could try the following:
#include <iostream>
#include <string>
std::string rotate_string( std::string s ) {
char first = s[0];
s.assign(s, 1, s.size() - 1);
s.append(1, first);
return s;
}
int main() {
std::string foo("abcde");
std::cout << foo << "\t" << rotate_string(foo) << std::endl;
return 0;
}
But of course, using the standard library is preferable here, and in most cases.
EDIT: I just saw litb's answer. Beat again!
EDIT #2: I just want to mention that the rotate_string function fails on strings of 0 length. You will get a std::out_of_range error. You can remedy this with a simple try/catch block, or use std::rotate :-)