_crt_secure_no_warnings 这个是宏定义么
一般不都是#define xxxx xxx这种形式么,这个#define后直接_crt_secure_no_warnings 然后就没有了
还是说这个_crt_secure_no_warnings 在其他地方写好了 需要用#define去加载这个
在哪能找到_crt_secure_no_warnings 的声明定义
crt=c run time
并不是所有的宏定义都是#define A B的形式,只定义
#define A
也是可以的。这种用法可以看作是和编译器对话,如果曾经定义过A就执行某段代码。
#define A
#ifdef A
#define N 10
#endif
void main()
{
printf("%d\n",N);
}