初始化指向char数组的指针后,出现乱码和错误的返回值。我一点都不明白。我使用Linux gcc作为编译器。

使用此在线编译器也尝试过,结果相同:
https://www.onlinegdb.com/online_c_compiler

#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <ctype.h>

// Prototypes -------------------------------------------------------------{{{1

void get_extension(const char *file_name, char *extension);
bool test_extension(const char *file_name, const char *extension);

// Main function ----------------------------------------------------------{{{1

int main()
{
    printf("%d\n", test_extension("name.txt", "txt"));
    return 0;
}

// Functions definitions --------------------------------------------------{{{1


void get_extension(const char *file_name, char *extension)
{
    int i;
    strcpy(extension, "");
    for (i=0; i < strlen(file_name) - 1; ++i)
        if ( file_name[i] == '.' ) break;
    if ( i == strlen(file_name) - 1 ) return;
    strcpy(extension, &file_name[i+1]);
}

bool test_extension(const char *file_name, const char *extension)
{
    char ext[] = "";
    get_extension(file_name, ext);

    printf("%s %s\n", ext, extension); // values before pointer init
    char *p = ext;
    printf("%s %s\n", ext, extension); // why did the string change??

    while ( *extension )
        if ( toupper(*p++) != toupper(*extension++) ) return 0;
    return 1;
}



我希望返回值为1,并且在第二个printf()调用中不会出现乱码。

最佳答案

char ext[] = "";之后,extchar[1]。在get_extension中,您尝试将整个扩展名写入其中,这显然不合适。越过数组的边界是未定义的行为,这意味着任何事情都可能发生。

关于c - 初始化指向字符串的指针:文本乱码?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56917354/

10-11 07:32