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
x = one(a, b); //here is my problem y = one(c, d); //here is my problem
What this code does is that it calls the constructor of the class one and assigns the newly created instance of this class to the variables x and y.
one
x
y
The constructor of class one is in line 9.