Q. Which of the following correctly defines a macro with parameters?
β
Correct Answer: (C)
#define SQUARE(x) (x*x)
Explanation: Use parentheses to avoid unexpected precedence issues.