// -*- mode: c++ -*- // $Id: strcat.g++,v 1.3 2001/06/20 03:20:03 doug Exp $ // http://www.bagley.org/~doug/shootout/ #include <iostream> #include <string> using namespace std; int main(int argc, char *argv[]) { int i, n = ((argc == 2) ? atoi(argv[1]) : 1); string str; for (i=0; i<n; i++) { str += "hello\n"; } cout << str.length() << endl; }