作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编写一个程序来创建 .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/
我是一名优秀的程序员,十分优秀!