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

renee
 2005-04-28 14:28
#11109 #11109
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Ich bin nicht so firm in C/C++

folgender Code erzeugt einen Segmentation fault. Was muss ich ändern?

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

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();
}
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Probleme mit strcat