第一种:
项目类型建立时缺失默认类库文件引起类型错误
#include "stdafx.h"
强制类型转换
coeff1 =float( sqrt( 1.0 / DIMENSION ) );
第二种:
#include <stdio.h>
#define TEST
int main(int argc, char* argv[])
{
#ifdef TEST
printf(\nTEST defined %d, TEST);
#else
printf(\nTEST not defined);
#endif
return 0;
}
它也会引起C2059错误,错误信息:error C2059: syntax error : )
第三种:
头文件依赖关系
#include <openssl/buffer.h>
#include <openssl/err.h>
#include <openssl/rand.h>
#include <openssl/conf.h>
#include <openssl/bio.h>
#include <openssl/objects.h>
文章评论(0条评论)
登录后参与讨论