✏️ Explanatory Question

What are macros? What are its advantages and disadvantages?

👁 22,409 Views
📘 Detailed Answer
💡

Answer with Explanation

Macros are abbreviations for lengthy and frequently used statements. When a macro is called the entire code is substituted by a single line through the macro definition is of several lines.

The advantage of macro is that it reduces the time taken for control transfer as in the case of function. The disadvantage of it is here the entire code is substituted so the program becomes lengthy if a macro is called several times.