InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between static call and dynamic call? |
|
Answer» In static call, the called program is a standalone program, it is an executable program. During runtime, we can call it in our called program. As about dynamic call, the called program is not an executable program; it can be executed through the called program only. |
|