Show how you would use the above copyvillian function to


Suppose I have declared the following struct:

struct Villian {
int wit;
int stealth;
int slainCount;
int slainCap;
string* victimsSlain;
};

Also assume the existence of a function copyVillian (as declared below) that takes two Villian params, one called orig and the other called copycat, and makes copycat a deep copy of orig.

void copyVillian (struct Villian * orig, struct Villian * copycat);

Please explain and tutor for the below.

1. Show how you would use the above copyVillian function to create a copy of sharpay called sharpaysMoreEvilTwin.

2. Now create a new Villian value called badGuy that you declare dynamically. Then, set badGuy's values as follows:
wit: 31 stealth: 25 slainCap: 4
slainCount: 2
victimsSlain[0]: Garko
victimsSlain[1]: Sparko

Solution Preview :

Prepared by a verified Expert
JAVA Programming: Show how you would use the above copyvillian function to
Reference No:- TGS01259910

Now Priced at $30 (50% Discount)

Recommended (98%)

Rated (4.3/5)