#include
#include
int main()
{
char buf[1024];
FILE *fp;
int len;
//这里文件路径根据需要进行修改,默认在当前目录下
if((fp = fopen("go.txt","r")) == NULL)
{
perror("open failed!");
exit (1) ;
}
while(fgets(buf, 1024, fp) != NULL)
{
printf("%s",buf);
}
putchar('\n');
fclose(fp);
return 0;
}
fgets同时会把行尾的'\n'也读出来,打印是不需要加换行。