What is the correct format for naming a macro with multiple arguments?
What is the correct format for naming a macro with multiple arguments?
The correct format for naming a macro with multiple arguments is to enclose the arguments in parentheses. Therefore, monthly_sales(argument 1, argument 2, argument 3) is the proper format. Option D uses square brackets, which is incorrect for this context. Hence, option C is the correct answer.
B, as arguments are not mandatory in the name
B is correct
It's B. When creating a macro, you name a macro and provide the number of arguments in parentheses. You supply the argument names within the macro definition, not the name.