[求助]请教一个关于宏定义的问题
#define S -1
void main()
{#if S>0
printf("yes!");
#else
printf("no!");
#endif
#ifndef E
printf("%d",NULL);
#endif
}这个程序不能运行,错在哪了?
#define S -1
void main()
{#if S>0
printf("yes!");
#else
printf("no!");
#endif
#ifndef E
printf("%d",NULL);
#endif
}这个程序不能运行,错在哪了?