码迷,mamicode.com
首页 > 其他好文 > 详细

数据写入文件

时间:2014-11-15 22:55:54      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:os   for   文件   数据   on   c   file   print   数组   

//生成N个小于N的随机数,存入数组a
void RandToFile(int *a)
{
srand( (unsigned)time( NULL ) ); //初始化随机数
for(int i=0;i<N;i++)
{
a[i]=(int)rand()%N;
}
FILE *fp;
if((fp=fopen("data.txt","w"))==NULL)
{
printf("\nerror on open data.txt!");
getch();
exit(1);
}
for(i=0;i<N;i++)
fprintf(fp,"%1d\n",a[i]);
fclose(fp);
}

数据写入文件

标签:os   for   文件   数据   on   c   file   print   数组   

原文地址:http://www.cnblogs.com/jamsbwo/p/4100270.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!