/* Given two floating point values on the command line, this program adds them together and outputs the to stdout. */ #include #include int main(int argc, char *argv[]) { cout << (atof(argv[1]) + atof(argv[2])) << '\n'; return 0; }