#include #include int main() { string command = "mail"; string address = "jondich@mathcs.carleton.edu"; string fileName = "system.cpp"; string s; s = command + " " + address + " < " + fileName; cout << "The command: " << s << endl; system( s.c_str() ); return( 0 ); }