gpt4 book ai didi

c - 如何为超出范围的数组提供可变存储大小?

转载 作者:太空宇宙 更新时间:2023-11-04 05:42:31 25 4
gpt4 key购买 nike

我有一个数组和一个保存其大小的变量。这个数组是全局的(在 main 之外)。问题是我不知道大小,所以我必须这样声明(伪代码):

int a[]; // don't know the size yet (outside main)

int size = [user input] // this is inside main

size 变量在 main 中。这就是问题出现的地方:

用户输入后,我如何为数组指定大小?我的数组需要是全局的,所以我很难弄清楚这一点。

最佳答案

在 C 语言中,您不能拥有具有文件范围的可变长度数组。

您可以做的是使用文件范围指针并使用 malloc 分配内存。

#include <stdlib.h> 

int *a; // outside main

int main(void)
{
a = malloc(user_input * sizeof *a); // this is inside main

// ...
}

关于c - 如何为超出范围的数组提供可变存储大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14715514/

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