Beispiel #1
0
int main(void){


	Perro* Toby = new Perro(5,(char *)"terrier",4);

	cout << Toby->getEdad() << endl;
	cout << Toby->getRaza() << endl;
	cout << Toby->getHijos() << endl;


	return 0;
}