Yeah, I was confused. Can I give the declaration function and if statement 3 parameters?? If so, would it be correct to write int copyLine(ifstream&, ifstream&, ofstream&);
or int copyLine(ifstream& theAdopted,ifstream& theOriginals, ofstream& theBigPicture);?
And for the if statement, can I write if(copyLine(theAdopted, theOriginals, theBigPicture) != 0)?
Okay, great. It's compiling now that I've altered. But, do yall know whether I need to save my .txt files in a program file for DEV like I would NetBeans or CodeBlocks?? I'm not sure if DEV can locate the files...