Assuming outFile is a file stream object and number is a variable, which statement writes the contents of number to the file associated with outFile?
number >> outFile;
outFile << number;
outFile >> number;
write(outFile, number);