#include<stdio.h>
#include<conio.h>

void main()
{
FILE *ptr;
char another='y';
struct emp{
char name[25];
int age;
float bs;
};
struct emp e;
clrscr();
	if((ptr=fopen("d:\\BCE.txt", "r"))==NULL)
	printf("File Not Opened");
	else
		{
		while(fscanf(ptr,"%s %d %f", e.name, &e.age, &e.bs)!=EOF)
			{
			printf("%s %d %f\n", e.name, e.age, e.bs);
			}
		}
		fclose(ptr);
}