gpt4 book ai didi

c - 在c中遇到段错误

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

所以这个函数就是将图像中的区域改变为某种颜色。但是当我运行这段代码时,它给了我一个段错误。我不知道为什么它总是给我这个错误。有人能帮我吗?这是我的代码:

void region_set( uint8_t array[], 
unsigned int cols,
unsigned int rows,
unsigned int left,
unsigned int top,
unsigned int right,
unsigned int bottom,
uint8_t color )
{
for (int x = 0; x < ((right-left)*(top-bottom)); x++)
{
array[x] = color;
}
}

最佳答案

看来如果“array[]”小于“((right-left)*(top-bottom))”,

关于c - 在c中遇到段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26940980/

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