Answer:
Following are the statement in the c++ language
ifstream inFile; // declared a variable inFile
ofstream outFile; //declared a variable outFile
Explanation:
The ifstream and ofstream is the file stream object in the c++ Programming language .The ifstream file stream object is used for reading the contents from the file whereas the ofstream file stream object is used for writting the contents into the file.
ifstream variablename;
ofstream variablename