/* Write a function that returns the length of a string. * Make your function recursive. */ int length(std::string str) { while(str==str){ int length = str.size(); return length; } }