gpt4 book ai didi

c - 在c中将大字符数组作为输入

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

我想将一个大字符数组作为输入。
例如:char array[c][d]
哪里c <= 200000d <= 500000

C语言中有没有办法将这样的字符数组作为输入?

最佳答案

声明数组后,可以使用calloc函数以便为数组提供大小。所以你的代码大致如下所示:

char** array;
array = calloc(c, sizeof(char*));

并且不需要定义第二个值,因为它会自动更改。但如果你仍然想要,你可以写:

for (int i = 0; i < c; i++)
array[i] = calloc(d, sizeof(char));

关于c - 在c中将大字符数组作为输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48794157/

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