Static:- a static variable is a variable that has been allocated "statically", meaning that its lifetime is the entire run of the program. i.e. static variables have a property of preserving their value even after they are out of their scope.
This:- The “this” pointer is an implicit parameter to all member functions. Therefore, inside a member function, “this” may be used to refer to the invoking object. It points to the object for which the member function is called. Static member functions do not have a this pointer.
String manupulation
String manupulation
Function overloading is a feature in C++ where two or more functions can have the same name but different parameters