|
(a) Determines which integers are common to both containers, prints them out, and changes container B only so that, upon completion, A only holds the common elements.
(b) Determines which integers are common to both containers, and prints them out without changing the contents of the containers.
(c) Determines which integers are common to both containers, prints them out, and changes both containers so that, upon completion, the containers only hold the common elements.
(d) Determines which integers are common to both containers, prints them out, and changes container A only so that, upon completion, A only holds the common elements.
|