質問編集履歴
1
title
CHANGED
File without changes
|
body
CHANGED
@@ -35,7 +35,7 @@
|
|
35
35
|
#include <stdio.h>
|
36
36
|
#include <stdlib.h>
|
37
37
|
int main() {
|
38
|
-
char str[] = "ABC";
|
38
|
+
char str[32] = "ABC";
|
39
39
|
char (*data)[];
|
40
40
|
data = (char **)malloc(sizeof(char *) * 5);
|
41
41
|
data[0] = str;
|