Exploring OOP Fundamentals: Part 4 Breakdown
THIS POINTER
Its is a keyword which points to the objects which invokes the member function.
It is used for return object.
CODE:
class A{
int a;
public:
void setdata(int a){
this->a=a;
}
void getdata(){
cout<<"the...
kalibaranwal.hashnode.dev2 min read