摘要: C语言常见错误中英文对照表(网络搜索及经验积累不断更新中)常见错误中英文对照表fatal error C1003:error count exceeds number; stopping compilation中文对照:错误太多,停止编译分析:修改之前的错误,再次编译fatalerrorC1004: unexpected end of file found中文对照:文件未结束分析:一个函数或者一个结构定义缺少“}”、或者在一个函数调用或表达式中括号没有配对出现、或者注释符“/*…*/”不完整等fatalerror C1083:Cannot open include file: 'xxx 阅读全文
posted @ 2012-06-13 09:42 lizx 阅读(2156) 评论(0) 推荐(0)
摘要: math.h常用函数int abs (int x);double acos (double x);double asin (double x);double atan (double x);double atan2 (double y, double x);double atof (const char *s);double ceil (double x);double cos (double x);double cosh (double x);double exp (double x);double fabs (double x);double floor (double x);double 阅读全文
posted @ 2012-06-13 09:38 lizx 阅读(773) 评论(0) 推荐(0)