将3D数组传递给函数。

编程入门 行业动态 更新时间:2024-10-26 21:20:54
本文介绍了将3D数组传递给函数。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我很难将3D数组传递给函数。我已经用谷歌搜索了它到死,我想我明白了,但是代码崩溃了,运行时没有任何输出。 (代码块,gcc)

I'm having a hard time passing a 3D array to a function. I've googled it to death and I think I understand but the code crashes with no output when run. (codeblocks, gcc)

#include <stdio.h> #include <stdlib.h> void foo(char (*foo_array_in_foo)[256][256]); int main() { char foo_array[256][256][256]; int line_num = 0; printf("Hello world!\n"); foo(foo_array); return 0; } void foo(char (*foo_array_in_foo)[256][256]) { printf("In foo\n"); }

推荐答案

您的堆栈溢出

256*256*256 = 16777216 bytes > STACK_SIZE

这是分割错误的原因。

如果需要大量内存,则必须使用 malloc 。

If you need such a large ammount of memory you have to use malloc.

更多推荐

将3D数组传递给函数。

本文发布于:2023-07-29 19:36:02,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1243464.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:数组   函数

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!