P
puzzlecracker
B.S. page 271:
class complex {
double re, im;
...
public:
...
};
comlex::comple(complex c):re(c.re), im(c.im){} //error
call would have involve an infinite recursion. WHY?
class complex {
double re, im;
...
public:
...
};
comlex::comple(complex c):re(c.re), im(c.im){} //error
call would have involve an infinite recursion. WHY?