gpt4 book ai didi

c - 如何用C语言打开一个文件

转载 作者:行者123 更新时间:2023-11-30 20:52:26 25 4
gpt4 key购买 nike

我正在尝试编写一个程序来创建 .dat 文件,读取该文件并调用函数以使用以下方法之一在屏幕上打印数据:冒泡、选择或插入、按 DESC 形式对数据进行排序。 有人可以帮助我吗?您可以在下面看到我的代码:

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
FILE *arquivo = fopen("teste.dat", "r");

// testa se o arquivo foi aberto com sucesso
if(arquivo != NULL)
printf("Arquivo foi aberto com sucesso.");
else
printf("Nao foi possivel abrir o arquivo.");

printf("\n\n");
system("PAUSE");
return 0;
}

最佳答案

文件是否存在?如果没有,您必须使用“a+”或“w+”,因为您需要作为第二个参数进行访问。阅读文档 http://www.cplusplus.com/reference/clibrary/cstdio/fopen/ ...

关于c - 如何用C语言打开一个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10624400/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com