InterviewSolution
| 1. |
Tell Me More About The Parameters In Macro? |
|
Answer» Parameters are MACRO variables whose value you SET when you INVOKE a macro. To add the parameters to a macro, you simply name the macro VARS names in parenthesis in the %macro STATEMENT. Syntax: %MACRO macro-name (parameter-1= , parameter-2= , ……parameter-n = ); macro-text%; %MEND macro-name; %macro_name(par1,par2,....parn); Parameters are macro variables whose value you set when you invoke a macro. To add the parameters to a macro, you simply name the macro vars names in parenthesis in the %macro statement. Syntax: %MACRO macro-name (parameter-1= , parameter-2= , ……parameter-n = ); macro-text%; %MEND macro-name; %macro_name(par1,par2,....parn); |
|