#define DH_CONTLINE //
#include <stdio.h>
int main()
{
printf ("%s \n", DH_CONTLINE);
return 0;
}
在上述程序中显示错误:5
错误C2059:语法错误:')'
答案 0 :(得分:1)
您的代码相当于:
#include <stdio.h>
int main()
{
printf ("%s \n", //);
return 0;
}
这解释了编译器错误。