获取您
自己的
网站
×
更改方向
更改主题,深色/浅色
前往 Spaces
#include <stdio.h> int main() { FILE *fptr; // Open a file in read mode fptr = fopen("loremipsum.txt", "r"); // Print some text if the file does not exist if(fptr == NULL) { printf("Not able to open the file."); } // Close the file fclose(fptr); return 0; }
无法打开文件。