coderz.py

Keep Coding Keep Cheering!

Operator Overloading in C++

What is Operator Overloading? Operator overloading is a compile-time polymorphism in which the operator is overloaded to provide the user-defined data type with a special meaning. Most of the operators available in C++ are overloaded or redefined using operator overloading. It’s used to run an operation on a user-defined data type. Operators that can be […]

October 29, 2022 | C++ | No comments

Function Overloading in C++

What is Function Overloading & why is it used? Function overloading is an object-oriented programming feature in which two or more functions have the same name but different parameters.The function overloading feature in C++ is used to improve code readability. It is used to save the programmer from having to remember multiple function names. Function […]

October 12, 2022 | C++ | No comments

Advertisement