2022年c语言错误大全 .pdf

上传人:Che****ry 文档编号:34882776 上传时间:2022-08-19 格式:PDF 页数:6 大小:109.60KB
返回 下载 相关 举报
2022年c语言错误大全 .pdf_第1页
第1页 / 共6页
2022年c语言错误大全 .pdf_第2页
第2页 / 共6页
点击查看更多>>
资源描述

《2022年c语言错误大全 .pdf》由会员分享,可在线阅读,更多相关《2022年c语言错误大全 .pdf(6页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、C语言上机常见错误提示编译中的常见错误(1) 警告类错误?XXX declare but never used变量 XXX已定义但从未用过。?XXX is assigned a value which is never used变量 XXX已赋值但从未用过。? Code has no effect 程序中含有没有实际作用的代码。? Non-portable pointer conversion 不适当的指针转换,可能是在应该使用指针的地方用了一个非0 的数值。? Possible use of XXX before definition表达式中使用了未赋值的变量? Redeclaration

2、of main一个程序文件中主函数main 不止一个。? Suspicious pointer conversion 可疑的指针转换。通常是使用了基本类型不匹配的指针。? Unreachable code 程序含有不能执行到的代码。(2) 错误或致命错误? Compound statement missing in function main 程序结尾缺少括号 。? “”expected ;“( ”expected等复合语句或数组初始化的结尾缺少“) ”;“(”。? Case outside of switch case 不属于 Switch 结构,多由于switch结构中的花括号不配对所致。

3、? Case statement missing : switch结构中的某个case 之后缺少冒号。? Constant expression required 定义数组时指定的数组长度不是常量表达式。? Declaration syntax error 结构体或联合类型的定义后缺少分号。? Declaration was expected 缺少说明,通常是因为缺少分界符如逗号、分号、右圆括号等所引起的。名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 6 页 - - -

4、 - - - - - - ? Default outside switch Default部分放到了switch结构之外,一般是因为花括号不匹配而引起的。? do statement must have while do语句中缺少相应的while部分。? Expression syntax 表达式语法错。如表达式中含有两个连续的运算符? Extra parameter in call fun 调用函数 fun 时给出了多余的实参。? Function should return a value 函数应该返回一个值,否则与定义时的说明类型不匹配。? Illegal use of pointer

5、指针被非法引用,一般是使用了非法的指针运算。? Invalid pointer addition 指针相加非法。一个指针(地址)可以和一个整数相加,但两个指针不能相加。? Lvalue required 赋值运算的左边是不能寻址的表达式。? Misplaced else 程序遇到了没有配对的else ? No matching 表达式中的括号不配对。? Pointer required on left side of_ 在“_”运算的左边只能允许一个指针而不能是一个一般的结构体变量或联合类型的变量。 ? Statement missing;程序遇到了后面没有分号的语句。? Too few pa

6、rameters in call 调用某个函数时实参数目不够。? Unable to open include file XXXXXXXXXXX 头文件找不到。? Unexpected 或: 或 在不希望的地方使用了 或: 。? Undefined symbol Xin function fun 函数 fun 中的变量X没有定义。连接中的常见错误主要错误类似于“ undefined symbol _print in modula xxx”(print没有定义 ) ,通常是函数名书写错误。运行中的常见错误?Abnormal program termination 程序异常终止。 通常是由于内存使

7、用不当所致。名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 6 页 - - - - - - - - - ?Floating point error : Domain 或 Divide by 0 运算结果不是一个数或被0 除?Null pointer assignment 对未初始化的指针赋值,程序有严重错误。?User break 在运行程序时终止。继续1.c not an argument in function sum 该标识符不是函数的参数2.array bound

8、s missing in function main 缺少数组界限符 3.Array size too large in function main 数组规模太大4.bad file name format in include directive 在包含指令中的文件名格式不正确. 5.Call of non-function in function main 调用未经过定义的函数. 6.cannot modify a const object in function main 对常量不能进行修改. 7.character constant too long in function main

9、字符常量太大8.constant expression required in funtion main 数组定义的时候, 数组大小要求是常数pound statment missing in function main 复合语句漏掉符号 10.declaration syntax error in function main 宣告语法错误11.expression syntax in function main 表达式语法错误12. extra parameter in call to sum in function 调用函数时使用了过多的参数13.illegal use of floati

10、ng point in function main 浮点数的不合法使用14.illegal pionter subtraction in function main 不合法的指针相减15.invalid pointer addition in function main 无效的指针相加16.out of memory in function main 内存不足17.statement missing ; in function main 语句后面漏掉分号. 警告报错1.k is assigned a value which is never used 定义了一个变量, 但程序从来没用过2.po

11、ssibiy incorrect assignment in function main 这样的赋值可能不正确3. suspicious pointer conversion in function main 可疑的指针转换4.code has no effect in funtion main 代码对程序没效果Ambiguous operators need parentheses:不明确的运算需要用括号括起Ambiguous symbol xxx :不明确的符号Argument list syntax error:参数表语法错误Array bounds missing :丢失数组界限符Ar

12、ray size toolarge :数组尺寸太大Bad character in paramenters :参数中有不适当的字符Bad file name format in include directive :包含命令中文件名格式不正确Bad ifdef directive synatax :编译预处理ifdef有语法错Bad undef directive syntax :编译预处理undef 有语法错Bit field too large :位字段太长Call of non-function :调用未定义的函数Call to function with no prototype :调

13、用函数时没有函数的说明Cannot modify a const object :不允许修改常量对象名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 6 页 - - - - - - - - - Case outside of switch :漏掉了 case 语句Case syntax error :Case 语法错误Code has no effect :代码不可述不可能执行到Compound statement missing :分程序漏掉 Conflicting ty

14、pe modifiers :不明确的类型说明符Constant expression required :要求常量表达式Constant out of range in comparison :在比较中常量超出范围Conversion may lose significant digits :转换时会丢失意义的数字Conversion of near pointer not allowed :不允许转换近指针Could not find file xxx :找不到 XXX文件Declaration missing ; :说明缺少 ; Declaration syntax error :说明中出

15、现语法错误Default outside of switch :Default 出现在 switch语句之外Define directive needs an identifier :定义编译预处理需要标识符Division by zero :用零作除数Do statement must have while :Do-while语句中缺少while部分Enum syntax error :枚举类型语法错误Enumeration constant syntax error :枚举常数语法错误Error directive :xxx :错误的编译预处理命令Error writing output

16、file :写输出文件错误Expression syntax error :表达式语法错误Extra parameter in call :调用时出现多余错误File name too long :文件名太长Function call missing ) :函数调用缺少右括号Fuction definition out of place :函数定义位置错误Fuction should return a value :函数必需返回一个值Goto statement missing label :Goto语句没有标号Hexadecimal or octal constant too large :

17、16进制或 8 进制常数太大Illegal character x :非法字符 x Illegal initialization :非法的初始化Illegal octal digit :非法的 8 进制数字Illegal pointer subtraction :非法的指针相减Illegal structure operation :非法的结构体操作Illegal use of floating point :非法的浮点运算Illegal use of pointer :指针使用非法Improper use of a typedefsymbol :类型定义符号使用不恰当In-line asse

18、mbly not allowed :不允许使用行间汇编Incompatible storage class :存储类别不相容Incompatible type conversion :不相容的类型转换Incorrect number format :错误的数据格式Incorrect use of default Default使用不当Invalid indirection 无效的间接运算Invalid pointer addition 指针相加无效名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - -

19、- - 第 4 页,共 6 页 - - - - - - - - - Irreducible expression tree 无法执行的表达式运算Lvalue required 需要逻辑值0或非 0 值Macro argument syntax error 宏参数语法错误Macro expansion too long 宏的扩展以后太长Mismatched number of parameters in definition 定义中参数个数不匹配Misplaced break 此处不应出现break 语句Misplaced continue 此处不应出现continue语句Misplaced d

20、ecimal point 此处不应出现小数点Misplaced elif directive 不应编译预处理elif Misplaced else 此处不应出现else Misplaced else directive 此处不应出现编译预处理else Misplaced endif directive 此处不应出现编译预处理endif Must be addressable 必须是可以编址的Must take address of memory location 必须存储定位的地址No declaration for function xxx 没有函数xxx 的说明No stack 缺少堆栈N

21、o type information 没有类型信息Non-portable pointer assignment 不可移动的指针(地址常数)赋值Non-portable pointer comparison 不可移动的指针(地址常数)比较Non-portable pointer conversion 不可移动的指针(地址常数)转换Not a valid expression format type 不合法的表达式格式Not an allowed type 不允许使用的类型Numeric constant too large 数值常太大Out of memory 内存不够用Parameter x

22、xx is never used 能数 xxx 没有用到Pointer required on left side of - 符号 -的左边必须是指针Possible use of xxx before definition 在定义之前就使用了xxx (警告)Possibly incorrect assignment 赋值可能不正确Redeclaration of xxx 重复定义了xxx Redefinition of xxx is not identical xx的两次定义不一致Register allocation failure 寄存器定址失败Repeat count needs an

23、 lvalue 重复计数需要逻辑值Size of structure or array not known 结构体或数给大小不确定Statement missing ; 语句后缺少 ; Structure or union syntax error X构体或联合体语法错误Structure size too large 结构体尺寸太大Sub scripting missing 下标缺少右方括号Superfluous & with function or array 函数或数组中有多余的& Suspicious pointer conversion 可疑的指针转换Symbol limit exc

24、eeded 符号超限Too few parameters in call 函数调用时的实参少于函数的参数不Too many default cases Default太多 (switch语句中一个 ) Too many error or warning messages 错误或警告信息太多名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 6 页 - - - - - - - - - Too many type in declaration 说明中类型太多Too much au

25、to memory in function 函数用到的局部存储太多Too much global data defined in file 文件中全局数据太多Two consecutive dots 两个连续的句点Type mismatch in parameter xxx 数 xxx 类型不匹配Type mismatch in redeclaration of xxx xx重定义的类型不匹配Unable to create output file xxx 无法建立输出文件xxx Unable to open include file xxx 无法打开被包含的文件xxx Unable to o

26、pen input file xxx 无法打开输入文件xxx Undefined label xxx 没有定义的标号xxx Undefined structure xxx 没有定义的结构xxx Undefined symbol xxx 没有定义的符号xxx Unexpected end of file in comment started on line xxx 从 xxx 行开始的注解尚未结束文件不能结束Unexpected end of file in conditional started on line xxx 从 xxx 开始的条件语句尚未结束文件不能结束Unknown assemb

27、le instruction 未知的汇编结构Unknown option 未知的操作Unknown preprocessor directive: xxx 不认识的预处理命令xxx Unreachable code 无路可达的代码Unterminated string or character constant 字符串缺少引号User break 用户强行中断了程序Void functions may not return a value Void类型的函数不应有返回值Wrong number of arguments 调用函数的参数数目错xxx not an argument xxx不是参数

28、xxx not part of structure xxx不是结构体的一部分xxx statement missing ( xx语句缺少左括号xxx statement missing ) xxx语句缺少右括号xxx statement missing ; xxx缺少分号xxx declared but never used 说明了 xxx 但没有使用xxx is assigned a value which is never used 给 xxx 赋了值但未用过Zero length structure 结构体的长度为零名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 6 页,共 6 页 - - - - - - - - -

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 高考资料

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁