Assuming that a text file named FIRST.TXT contains some text written into it, write a function named copyupper(), that reads the file FIRST.TXT and creates a new file named SECOND.TXT contains all words from the file FIRST.TXT in uppercase.

Source Code

void copyupper()
{
	ifstream fin;

	fin.open("FIRST.TXT");
	ofstream fout;
	fout.open("SECOND.TXT");
	char ch;
	while(!fin.eof())
	{
		fin.get(ch);
		ch=toupper(ch);
		fout<<ch;
	}
	fin.close();
	fout.close();
}