質問編集履歴
2
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,9 +2,7 @@
|
|
2
2
|
|
3
3
|
予め、いくつの文字列を連携すればいいのか分かってるときは連結できるのですが、キーボードから自分で文字列の数を選び、文字列を入力し、それを結合させる方法がわかりません。(繰り返し分forを用いて文字列は入力しました)
|
4
4
|
|
5
|
-
``
|
6
|
-
|
7
|
-
#include <stdio.h>
|
5
|
+
```#include <stdio.h>
|
8
6
|
|
9
7
|
#include <string.h>
|
10
8
|
|
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,3 +1,45 @@
|
|
1
1
|
strcatを用いた文字列の連結についてご質問です。
|
2
2
|
|
3
3
|
予め、いくつの文字列を連携すればいいのか分かってるときは連結できるのですが、キーボードから自分で文字列の数を選び、文字列を入力し、それを結合させる方法がわかりません。(繰り返し分forを用いて文字列は入力しました)
|
4
|
+
|
5
|
+
``
|
6
|
+
|
7
|
+
#include <stdio.h>
|
8
|
+
|
9
|
+
#include <string.h>
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
int main(void)
|
14
|
+
|
15
|
+
{
|
16
|
+
|
17
|
+
int i,n;
|
18
|
+
|
19
|
+
char str[100][100];
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
printf("入力する文字列の数を入力(最大100個):"); scanf("%d", &n);
|
24
|
+
|
25
|
+
for (i = 0; i<n; i ++){
|
26
|
+
|
27
|
+
printf("文字列を入力してください(100文字以下):");
|
28
|
+
|
29
|
+
scanf("%s",str);
|
30
|
+
|
31
|
+
}
|
32
|
+
|
33
|
+
strcat(str);
|
34
|
+
|
35
|
+
printf("連結された文字列はstr);
|
36
|
+
|
37
|
+
printf("文字数は%d",strlen(str));
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
}
|
42
|
+
|
43
|
+
コード
|
44
|
+
|
45
|
+
```
|