gpt4 book ai didi

c - 在c中动态初始化3D字符数组

转载 作者:行者123 更新时间:2023-11-30 20:30:53 27 4
gpt4 key购买 nike

我正在尝试初始化 3D 字符数组,但失败了。当我执行程序时崩溃。 我需要在 ***word 中存储“T”组“N[i]”个单词。每个单词的字符少于 20。“程序在静态初始化时执行。”

#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<string.h>
#include<math.h>

int main()
{
int i,j,k,T,sum=0;
printf("\nEnter the no of test cases");
scanf("%d",&T);

int *N;
N=(int*)malloc(T*sizeof(int));

int **t;
t=(int**)malloc(T*sizeof(int*));
for(i=0;i<T;i++)
{
t[T]=(int*)malloc(N[i]*sizeof(int));
}

char ***word;
word = (char ***)malloc(T*sizeof(char**));
for (i = 0; i< T; i++)
{
word[T] = (char **) malloc(N[i]*sizeof(char *));
for (j = 0; j < N[i]; j++) {
word[T][N[i]] = (char *)malloc(20*sizeof(char));
}
}

最佳答案

在这一行中:

t[T]=(int*)malloc(N[i]*sizeof(int));

N[i] 未初始化。

同样的情况在这里应用 3 次:

      word[T] = (char **) malloc(N[i]*sizeof(char *));
for (j = 0; j < N[i]; j++) {
word[T][N[i]] = (char *)malloc(20*sizeof(char));
}

之后

N=(int*)malloc(T*sizeof(int));

你应该添加一些初始化,例如:

for(i=0;i<T;i++)
{
N(i) = 10 + i; // or whatever dimension you need
}

顺便说一句:您不需要 malloc 的所有转换

关于c - 在c中动态初始化3D字符数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53008038/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com