I have a test next week for c++ and I\'m preparing myself for it. I\'m confused when I have 2 classes as shown below. I have to walk through the execution of the code, line by l
from the line x = one(a, b); it jumps to line one(int a, int b) and executes the parameterized constructor of one
x = one(a, b);
one(int a, int b)
one
same for line y = one(c, d);
y = one(c, d);