#include #include using namespace std; class String { private: char* str; size_t length; public: String() { str = new char[1]; str[0] = '\0'; length = 0; } String ...
I have a main.cc file that takes an input file as an argument. I then want to print stuff into an output file with the same name as the input file but with a different extension. The input files are ...