fscanf的用法

fscanf用法 int fscanf(FILE *stream, char *format,[argument...]);
参数format,用正则表达式来定义要提取字符串的相应信息。

通过fscanf读取data.txt文档中的用户数据,并且在控制台显示出来

data.txt数据如下:

 

#include
#include 
#include 
int main()
{
	FILE *fp;
	char ch;
	if((fp=fopen("d:\\data.txt","rt"))==NULL)
	{
		printf("\nCannot open file strike any key exit!");
		getch();
		exit(1);
	}
	char buf[40];
	while(fscanf(fp,"%s",buf)!=-1)
	{
		printf("%s\n",buf);
	}
	fclose(fp);
	getch();
	return 0;
} 

 控制台显示:

 

fscanf功能:从一个流中执行格式化输入,fscanf遇到空格和换行时结束,注意空格时也结束。

如果要想fscanf按相应格式将数据存入相应变量里面可以将部分代码修改为:

	char buf[40];
	unsigned int j;
	while(fscanf(fp,"%s %d",buf,&j)!=-1)
	{
		printf("%s %d\n",buf,j);
	}


控制台打印结果:

 


你可能感兴趣的:(C语言)