Love beautiful code? We do too.
Hàm char *strerror(int errnum)
tìm kiếm một mảng nội tại cho số lỗi errnum và trả về một con trỏ tới một chuỗi thông báo lỗi.
Cú pháp strerror() trong C:
char *strerror(int errnum)
Tham số
Trả về giá trị
#include <stdio.h>
#include <string.h>
#include <errno.h>
int main ()
{
FILE *fp;
fp = fopen("thuvienc.txt","r");
if( fp == NULL )
{
printf("Error: %s\n", strerror(errno));
}
return(0);
}
Biên dịch chương trình C sẽ cho kết quả (vì chúng ta mở một file không tồn tại):
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời