|< 1 2 3 >| | 21 Einträge, 3 Seiten |
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();
}
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();
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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();
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
int test(){
int i;
for(i = 0; i < 10; i++){
char *title = "test ";
fputs(title, stderr);
}
fputs("\n", stderr);
return 0;
}
int main(){
test();
}
using namespace std;
|< 1 2 3 >| | 21 Einträge, 3 Seiten |