winifredhpcl

导航

2016年9月11日 #

Linux提供两个格式化错误信息的函数

摘要: #include “stdio.h” Void perror(__const char *__s); 其中__s是出现错误的地方,函数向标准错误输出设备输出如下:s:错误的详细信息。 Eg.perror(“fopen”); 输出结果:fopen:No such file or directory。 阅读全文

posted @ 2016-09-11 17:04 winifredBIG 阅读(436) 评论(0) 推荐(0) 编辑

warning: incompatible implicit declaration of built-in function ‘exit’

摘要: 出现这个错误,一般是程序中某个函数没有include相关的文件。 EG. 出现这个错误是因为要使用exit()应该包含stdlib.h文件 阅读全文

posted @ 2016-09-11 16:08 winifredBIG 阅读(523) 评论(0) 推荐(0) 编辑