Q&A Discussões
can anyone plz explain me this program step by step?#include <iostream>
using namespace std;
class MyClass {
public:
int var;
MyClass() { }
MyClass(int a)
: var(a) { }
MyClass operator+(MyClass &obj) {
MyClass res;
res.var= this->var+obj.var;
return res;
}
};
int main() {
MyClass obj1(12), obj2(55);
MyClass res = obj1+obj2;
cout << res.var;
}I am not getting the part inside operator+
0 Voto
8 RespostasOperator overloading
0 Voto
11 RespostasPointer manipulation
2 Votos
4 RespostasWhy it's not working?
1 Voto
1 RespostaThe Example In Lesson
1 Voto
2 RespostasQuente hoje
Fix the following code
2 Votes
Mobile number and similarity
0 Votes
GitHub account connecting issue
3 Votes
Coding issue
2 Votes
Hardware of computer
3 Votes
how to creat database?
1 Votes
photo upload issue in html code
0 Votes