#include <stdio.h> #include <errno.h> int main () { FILE * file; file=fopen ("exist.not","rb"); if (file==NULL) { perror("perror"); ...
確定! 回上一頁