作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 C 代码的一部分如下所示。
int data[10]={1,3,6,8,1,7,9,1,1,1};
b=10;
int out[b];
process(data, &b, out);
alpha (out, b);
最佳答案
您需要了解动态分配和静态分配之间的区别。
有3种选择:
int out[10];
function do_something()
{
int out[10];
}
function do_something(int* out)
{
// do things
}
...
{
int out[10];
do_something(out);
}
int b = 100;
int out[b];
int b=100;
int* out = (int*) malloc(b * sizeof(int));
// do things with out
free(out);
int b=100;
int* out = (int*) malloc(b * sizeof(int));
int* out_copy = out;
// do things with out. don't touch out_copy
free(out_copy);
关于c - 如何在C中动态分配整数数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40464927/
我是一名优秀的程序员,十分优秀!