当前位置: 代码迷 >> C语言 >> [求助]矩阵数据写入txt文件
  详细解决方案

[求助]矩阵数据写入txt文件

热度:388   发布时间:2007-05-29 15:45:26.0
[求助]矩阵数据写入txt文件


我要实现的功能是将数组sam[5]中的5个数字写入文件in.txt中,编译没有出错,但结果in.txt中只有几个乱码.
这是为什么呢?请各位高手指教!
谢谢!

#include "stdlib.h"
#include "stdio.h"
FILE *fp;
main()
{
int sam[5]={1,0,0,1,1};
if((fp=fopen("e:\\in.txt","wb"))==NULL)
{
printf("cannot open the file\n");
exit(1);
}

fwrite(sam,sizeof(sam),1,fp);
fclose(fp);
}

搜索更多相关的解决方案: txt  矩阵  数据  文件  

----------------解决方案--------------------------------------------------------
  相关解决方案