Question 6: File I/O [10]

Write the following function:

// This function opens srcfile for reading and destfile for writing.
// It then reads srcfile character by character, converts each character
//    to uppercase, and writes to destfile.
// It returns true if successful, or false if either file could not be opened.
bool copyFileToUpperByChars(const char srcfile[], const char destfile[])