Hi, I am looking for help creating a loop/while statement that loops until there is no data left in the input file. I ran into issues this time because the assignment requires us to perform all operations on the data in functions outside of the main() function. Basically, in a condensed form, I need to loop the following sub functions:
main()
{
readDataRow(); // I need to get these three functions to loop as long as...
validateData(); // data exists
printData();