gpt4 book ai didi

c - libjpeg 的段错误

转载 作者:太空宇宙 更新时间:2023-11-04 01:40:46 26 4
gpt4 key购买 nike

我无法理解我从以下代码中得到的段错误:

#include <stdio.h> 
#include <jpeglib.h>
#include <stdlib.h>

int main(int argc, char** argv){
FILE* outfile;
JSAMPLE* row_pointer;
struct jpeg_error_mgr jerr;
long long int *w, *h;

setSomePointers(w, h);

printf( "%lld %lld\n", *w, *h);
}

注释掉前三个声明中的任何一个都可以修复它...

奇怪的是,下面的代码有效:

#include <stdio.h> 
#include <jpeglib.h>
#include <stdlib.h>

int main(int argc, char** argv){
FILE* outfile;
JSAMPLE* row_pointer;
struct jpeg_error_mgr jerr;
long long int w, h;

setSomePointers(&w, &h);

printf( "%lld %lld\n", w, h);
}

有没有什么奇怪的事情发生,或者我需要打一些C教程?

最佳答案

这完全是未定义的行为 - 您取消引用未初始化的指针。

实际问题在

printf( "%lld  %lld\n", *w, *h);

其他的只是声明。您不应该取消引用 wh,因为它们根本没有被初始化。这与评论/取消评论任何前 (3) 行无关。

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

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