atest.c
#define COMMENT /##/
int main()
{
...
COMMENT int atest;
...
}
错误消息:
atest.c:16:1: error: pasting "/" and "/" does not give a valid preprocessing token
atest.c: In function 'main':
atest.c:16: error: expected expression before '/' token
虽然 Microsoft C 编译器对 COMMENT 宏很满意。这里的提示也不起作用。
有人可以为此提供解决方案或解释吗?谢谢。