InterviewSolution
| 1. |
What Are The Advantages Of Using Macro? |
|
Answer» In modular programming, using functions is advisable when a certain code is repeated several times in a program. However, everytime a function is called the control GETS transferred to that function and then back to the calling function. This consumes a lot of execution time. One way to save this time is by using macros. Macros SUBSTITUTE a function CALL by the DEFINITION of that function. This saves execution time to a great EXTENT. In modular programming, using functions is advisable when a certain code is repeated several times in a program. However, everytime a function is called the control gets transferred to that function and then back to the calling function. This consumes a lot of execution time. One way to save this time is by using macros. Macros substitute a function call by the definition of that function. This saves execution time to a great extent. |
|