Thread: main menu
View Single Post
Old 11-05-2004, 06:14 AM   #9 (permalink)
frrossk
Registered User
 
frrossk's Avatar
 
Join Date: Sep 2004
Posts: 6
frrossk is on a distinguished road
So, you have only to open the file (Lab x), then read the lines in that file and display them on the screen. A kind of:
Code:
fopen (Lab x);
while (!feof)
{
gets (file, string);
printf (string);
}
(just an idea)

Last edited by frrossk; 11-05-2004 at 06:15 AM. Reason: bad spelling
frrossk is offline   Reply With Quote