Programming MCQS - QUESTION DETAILS

How do you define a multi-line macro in C?
A. #define MACRO_NAME() { }
B. #define MACRO_NAME { }
C. #macro MACRO_NAME { }
D. #macro MACRO_NAME() { }

#define MACRO_NAME { } defines a multi-line macro in C.

Similar Questions

What does the 'printf' function do in C?






What is the purpose of the 'break' statement in a switch statement?






What is the purpose of the 'typedef' keyword in C?






What is the purpose of the 'fflush' function in C?






Which of the following is not a bitwise operator in C?






In C, how do you declare a constant?






How do you declare a dynamic array in C?






How do you define a function in C?






How is a single-line comment written in C?






What is the output of printf("%d", 5 + 3 * 2);?