diff --git a/lectures/14_operators/README.md b/lectures/14_operators/README.md index 10ab74f..08edf8b 100644 --- a/lectures/14_operators/README.md +++ b/lectures/14_operators/README.md @@ -11,7 +11,7 @@ – w × z = (ac − bd) + (ad + bc)i - The magnitude of a complex number is √a2 + b2; -## 14.2 Complex Class declaration (complex.h) +## 14.2 Complex Class declaration ([complex.h](complex.h)) ```cpp class Complex { @@ -34,7 +34,7 @@ Complex operator- (Complex const& left, Complex const& right); // non-member fun ostream& operator<< (ostream& ostr, Complex const& c); // non-member function ``` -## 14.3 Implementation of Complex Class (complex.cpp) +## 14.3 Implementation of Complex Class ([complex.cpp](complex.cpp)) ```cpp // Assignment operator