Use long variable names, to be descriptive. You'll be surprised how much the readability of the code improves when the variable names make sense.
Prefer this:
std::string songName = "Boom! Boom! Boom!";
Over this:
std::string s = "Boom! Boom! Boom!";
References