What you mean by early binding and late binding? How it is related to dynamic binding?
The compiler performs a process called binding when an object is assigned to an object variable. The early binding (static binding) refers to compile time binding and late binding (dynamic binding) refers to runtime binding.
| Is This Answer Correct ? | 0 Yes | 0 No |
Differentiate between the manipulator and setf( ) function?
What are c++ storage classes?
How do c++ struct differs from the c++ class?
What is c++ runtime?
Can you pass an array to a function in c++?
How does c++ sort work?
What is an explicit constructor?
What is std::move?
given unsigned int ui1=3,ui2=7; what are the outputs of a)ui1 & ui2 b)ui1 && ui2 c)ui1 | ui2 d)ui1 || ui2 i also need the justification for the answers thank you
Why the usage of pointers in C++ is not recommended ?
1.what is the difference between software & package &application.
Why preincrement operator is faster than postincrement?