函数原型
char* fgets(char* s, int size, FILE* fp)
用法
函数会读取最多size大小的数据到s中,当遇到EOF或者新行时也会停止,并将换行符“\n”保存在s中。
示例代码:
1 #include <stdio.h>
2 #include <stdlib.h>
3 void main()
4 {
5 FILE *fp = fopen("test.in","r");
6 char in[100],in2[100];
7 fgets(in,sizeof(in),fp);
8 fgets(in2,sizeof(in2),fp);
9 printf("%s%s",in,in2);
10 }
test.in
1 this is a test!
2 hello world!
3 god bless me!
4
运行结果:
this is a test!
hello world!