We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- C++
- Other Concepts
- Operator Overloading
- Discussions
Operator Overloading
Operator Overloading
Sort by
recency
|
226 Discussions
|
Please Login in order to post a comment
Operator overloading makes custom types in C easier to use with familiar operators, improving code clarity. Cricbet99 club registration
class Matrix{ public: vector> a; Matrix(int n = 0, int m = 0) { a.resize(n, vector(m)); } Matrix operator+(Matrix const& obj){
int n=a.size(); int m=a[0].size(); Matrix res(n,m); for(int i=0;i
Hello i want to share my solution, enjoy:
This was a weird one: