#include "Part1SimpleFileModifier.h"
#include "FileModifyException.h"
void Part1SimpleFileModifier::modifyAndCopyFile(const char *sourceFile, const char *destFile)
{
//enter code here.
}
So the file I'm trying to access is called Util.cpp; I need to modify a binary file and write it out to a new file. Using open(), close(), read(),write(). I'm lost as to where to begin.