C 中的多行宏
在本节将演示如何在 C 中编写多行宏。我们可编写类似函数的多行宏,但对于宏,每一行都必须以反斜杠’\’字符结尾。如果使用花括号’{}’并且宏以’}’结尾,则它可能会生成一些错误。因此我们可以将整个内容括起来。
请查看以下程序以了解关于多行宏的思路。
示例
#include<stdio.h> #define PRINT(x, str) ({\ printf("The number %d", x);\ printf(" is ");\ printf(#str);\ printf("
");\ }) int main() { int x = 10; if(x % 2 == 0){ PRINT(x, EVEN); } }
输出
The number 10 is EVEN
广告