using fstream

Hey Guys,

I need help rewriting this code in a better way with fstream

1
2
3
4
5
6
7
//opening the Records file
		Records = fopen("Records.txt","a+");
		do
		{
			fgets(info,SIZE,Records);
			cout << info;
                }
Topic archived. No new replies allowed.