c语言如何读取文件中的字符串

   2025-03-15 3430
核心提示:在C语言中,可以使用标准库函数fscanf或fgets来读取文件中的字符串。使用fscanf函数:#include stdio.hint main() {FILE *file =

在C语言中,可以使用标准库函数fscanffgets来读取文件中的字符串。

使用fscanf函数:
#include <stdio.h>int main() {FILE *file = fopen("example.txt", "r");if (file == NULL) {printf("无法打开文件\n");return 1;}char str[100];while (fscanf(file, "%s", str) != EOF) {printf("%s\n", str);}fclose(file);return 0;}

上述代码打开名为example.txt的文件并从中读取字符串,每次读取一个字符串并打印出来,直到文件末尾。

使用fgets函数:
#include <stdio.h>int main() {FILE *file = fopen("example.txt", "r");if (file == NULL) {printf("无法打开文件\n");return 1;}char str[100];while (fgets(str, sizeof(str), file) != NULL) {printf("%s", str);}fclose(file);return 0;}

上述代码使用fgets函数从文件中逐行读取字符串并打印出来,直到文件末尾。sizeof(str)指定了读取的最大字符数,避免了缓冲区溢出的问题。

 
 
更多>同类维修知识
推荐图文
推荐维修知识
点击排行
网站首页  |  关于我们  |  联系方式  |  用户协议  |  隐私政策  |  网站留言