InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Static Call And Dynamic Call? |
|
Answer» In STATIC call, the called program is a STAND alone program, it is an EXECUTABLE program. During RUN time 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. In static call, the called program is a stand alone program, it is an executable program. During run time 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. |
|