Thread Probleme mit strcat (20 answers)
Opened by renee at 2005-04-28 14:28

esskar
 2005-04-28 23:31
#11114 #11114
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
[quote=betterworld,28.04.2005, 21:23]Aber mithilfe von realloc solltest Du das Problem loesen koennen, auch wenn es unter Umständen nicht sehr effizient ist.[/quote]
die Ausgage sollten wir mal in Anführungszeichen setzten!


Abhilfe: STL

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <string> // nicht string.h
#include <stdio.h>
#include <stdlib.h>


int test(){
std::string multi = "";
int i;
for(i = 0; i < 10; i++){
  char *title = "test ";
  multi += title;
}
fprintf(stderr,"%s\n",multi.c_str());
return 0;
}

int main(){
return test();
}


die STL verlangt aber einen C++ Kompiler; nicht C\n\n

<!--EDIT|esskar|1114716712-->

View full thread Probleme mit strcat