how do you separate a multiline macro in C language
Answers
Answered by
0
"\ operator is used to separate a multiline macro in C language"
Explanation:
In C language, macros are used to substitute a string, which in turn defined as a macro substitution.
Syntax:
#define first_part second_part
In C, macros can be used to replace a first part using a second part.
Multiline functions can also be written as functions, but as for macros, only \ operator is used to separate lines. So we use \ operator to separate a multiline macro in c C language.
Answered by
0
Answer:
Ans: Each line must be terminated with backslash / character.
Explanation:
Explanation: We can write multiline macros like functions, but for macros, each line must be terminated with backslash / character.
Similar questions