#include <iostream.h>
#include <string.h>
class pp
{
public:
pp(char * te = "noname") : name(new char[strlen(te)+1]){strcpy(name,te);}
pp(const pp & p) : name(new char[strlen(p.name)+1]){strcpy(name,p.name);}
pp & operator = (const pp & p)
{
if (this != &p)
{...