i am trying to get data from a txt filed named musicfile.txt to display on a screen and get sent to the printerfile created. when i excecute the program no information is show, could someone tell me whats wrong?
//Program to read from the datafile and print a report
using namespace std;
#include<iostream>
#include<fstream>
#include<iomanip>
//function prototypes
void Initialize(fstream&datafile,fstream&printerfile);
void Readandprint(fstream&datafile,fstream&printerfile);
void Finalize(fstream&datafile,fstream&printerfile);