C++ Virtual Functions Question: Download C++ Virtual Functions PDF

What is Static Binding?

Tweet Share WhatsApp

Answer:

By default, matching of function call with the correct function definition happens at compile time. This is called static binding or early binding or compile-time binding. Static binding is achieved using function overloading and operator overloading. Even though there are two or more functions with same name, compiler uniquely identifies each function depending on the parameters passed to those functions.

Download C++ Virtual Functions PDF Read All 30 C++ Virtual Functions Questions
Previous QuestionNext Question
Do you know the problem with overriding functions?What is Dynamic Binding?