Home »

What is the difference between run time binding and compile time binding?

Question ListCategory: cWhat is the difference between run time binding and compile time binding?
denielshakespeare5 author asked 9 years ago
1 Answers
jamessmith05 author answered 8 years ago

Dynamic Binding :
The address of the functions are determined at runtime rather than @ compile time. This is

also known as "Late Binding".

Static Binding :

The address of the functions are determined at compile time rather than @ run time. This is

also known as "Early Binding"

Please login or Register to Submit Answer