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

《编写一个程序,从一个文件中读出字符串,并显示在屏幕上》

时间:2015-09-15 20:02:03      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

注意:在程序的第11行用fgets函数读入字符串时,指定一次读入10个字符,但按fgets函数的规定,

  如果遇到“\n”就结束字符串输入,“\n”作为最后一个字符也读入到字符数组中

//编写一个程序,从f:\\FILE_1\\file_2.txt中读回字符串

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int main()
{
FILE *fp;
char str[3][10];
int i=0;
if((fp=fopen("f:\\FILE_1\\file_2.txt","r"))==NULL)
{
printf("can‘t open file!\n");
exit(0);
}
while(fgets(str[i],10,fp)!=NULL)
{
printf("%s",str[i]);
i++;
}
fclose(fp);
return 0;

}

《编写一个程序,从一个文件中读出字符串,并显示在屏幕上》

标签:

原文地址:http://www.cnblogs.com/sun-/p/4811102.html

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