#include #include #include int test(){ char *multi = ""; int i; for(i = 0; i < 10; i++){ char *title = "test "; strcat(multi,title); } fprintf(stderr,"%s\n",multi); return 0; } int main(){ test(); }