0
如何將錯誤添加到perror堆棧?如何將我的錯誤的描述添加到perror函數
這裏是什麼,我想
#include <stdio.h>
#include <stdlib.h>
int Div (int a, int b, int * c) {
if (b == 0) {
// add to perror: "cannot divide by zero!"
return 0;
}
*c = a/b;
return 1;
}
int main() {
int n;
if (!Div(2, 0, &n)) {
perror("could not divide");
}
return 1;
}
這不是在AAAAAAAAAAAAALLLL如何errno子系統工作... – 2012-04-22 04:05:43
如果這是C++ .. **使用例外!! ** – jli 2012-04-22 04:05:54
不是C++只是c。 – 2012-04-22 04:06:24