More of the Class Implementation
int string::length()
{
     return len;
}
int string::display()
{
     cout <<str;
     return len;
}