/* by Suzuki Using iostream to find the size of a file */ #include #include using namespace std; int main() { char * file = new char[128]; cout<<"File: "; cin>>file; ifstream myFile; myFile.open(file); myFile.seekg(0, ios::end); // take cursor to the end of the file int fileSize = myFile.tellg(); // get position/size cout<<"File size is: "<