在C语言中,你可以使用以下步骤读取文件到数组:
fopen()
函数打开文件,该函数接受两个参数,第一个参数是文件路径,第二个参数是打开方式(例如:读取模式"r"、写入模式"w"等)。FILE *file = fopen("file.txt", "r");
fopen()
函数后,需要检查返回值是否为NULL
,如果是NULL
则表示文件打开失败。if (file == NULL) {
printf("文件打开失败!");
return 1; // 返回非零值表示发生错误
}
fscanf()
函数读取文件内容,并将读取的内容存入数组中。这里假设文件中的每个元素都是整数。int array[100]; // 假设数组大小是100
int i = 0;
while (fscanf(file, "%d", &array[i]) != EOF) {
i++;
}
fclose()
函数关闭文件,以释放资源。fclose(file);
完整的示例代码如下:
#include <stdio.h>
int main() {
FILE *file = fopen("file.txt", "r");
if (file == NULL) {
printf("文件打开失败!");
return 1;
}
int array[100];
int i = 0;
while (fscanf(file, "%d", &array[i]) != EOF) {
i++;
}
fclose(file);
// 输出读取的数组内容
for (int j = 0; j < i; j++) {
printf("%d ", array[j]);
}
return 0;
}
请确保文件中的数据与代码中的数据类型匹配,否则可能会导致读取错误。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: linux怎么用gcc编译c语言程序