123456789101112131415161718
#include <string>#include <iostream>using namespace std;int test() { string multi = ""; for(int i = 0; i < 10; i++){ char *title = "test "; multi += title; } cerr << multi << endl; return 0;}int main() { return test();}