C - fgets 在使用 char 数组时神秘地导致段错误

C - fgets mysteriously causes segfault when using char arrays

我似乎遇到了一些与此问题类似的问题,但是我以一种非常直接的方式提问,希望我能就到底发生了什么得到一个很好的解释。

看看这个非常简单的程序:

int main()
{
    char* a;
    a[200];
    fgets(a, 200, stdin);

    char* b;
    b[200];
    fgets(b, 200, stdin); // Seg fault occurs once I press enter

    return 0;
};

如您所见,'a' 部分运行良好。然而 'b' 段错误。怎么回事?

嗯,这是基础知识。段错误意味着您正在使用您无权访问的内存。

int main()
{
    char* a; // Create a pointer (a pointer can only contains an address (int size)
    a[200]; // Trying to access to the byt 200 of your pointer but basicaly do nothing. You are suppose to have a segfault here

    fgets(a, 200, stdin); // store your stdin into &a (you may have a segfault here too)

    return 0;
};

取决于很多事情,有时会失败,有时不会。但是你在这里做错了什么。 你必须想办法解决这个问题。首先使用一个简单的数组 char

#include <stdio.h> /* for stdin */
#include <stdlib.h> /* for malloc(3) */
#include <string.h> /* for strlen(3) */
#include <unistd.h> /* for write(2) */

int main()
{
     char str[200];
     fgets(str, sizeof str, stdin);

     write(1, str, strlen(str)); /* you can receive less than the 200 chars */

     return (0);
}

或者如果您想继续使用指针

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

int main()
{
     const size_t sz = 200;
     char* str;
     str = malloc(sz);

     fgets(str, sz, stdin);

     write(1, str, strlen(str));
}

但无论如何,你的错误是由于对C中的指针和内存缺乏了解

祝你好运,