h> int main(void) { errno=0; char *msg=strerror(-3); printf("errno=%d, msg=%s\n", errno, msg); return 0; } The strerror function in glibc is the ...
確定! 回上一頁