获取您的
自有
网站
×
更改方向
更改主题,深色/浅色
前往 Spaces
#include <stdio.h> int main() { FILE *fptr; // Open a file in read mode fptr = fopen("filename.txt", "r"); // Store the content of the file char myString[100]; // If the file exist if(fptr != NULL) { // Read the content and print it while(fgets(myString, 100, fptr)) { printf("%s", myString); } // If the file does not exist } else { printf("Not able to open the file."); } // Close the file fclose(fptr); return 0; }
Hello World!
大家好!