function overloading
-
CPP tutorials
C++ OOP Quizzes
Object-Oriented Programming (OOP) in C++ is a programming paradigm based on the concepts like classes, objects, inheritance, polymorphism, and encapsulation.…
Read More » -
CPP tutorials
Polymorphism in C++
The word polymorphism means having many forms. A real-life example of polymorphism is a person who at the same time can…
Read More » -
CPP tutorials
Default Arguments in C++
A default argument is a value provided for a parameter in a function declaration that is automatically assigned by the…
Read More » -
CPP tutorials
Functions in C++
A Function is a reusable block of code designed to perform a specific task. It helps break large programs into…
Read More » -
CPP tutorials
C++ Programming Examples
Writing C++ programs yourself is the best way to learn the C++ language. C++ programs are also asked in the…
Read More » -
CPP tutorials
Object Oriented Programming in C++
Before Object-Oriented Programming (OOPs), most programs used a procedural approach, where the focus was on writing step-by-step functions. This…
Read More »