我的代码的这一部分是关于注册的。

我只能注册一次,下次该程序停止。

问题是什么?

while (1) { /*usercounter initialized with 0*/
    printf("enter your order:\n");
    gets(buffer);
    order = strtok(buffer, " ");
    if (strcmp(order, "signup") == 0) {
        usercounter++;
        if (usercounter > 50) {
            username=realloc(username,usercounter*sizeof(*username));
            password=realloc(password, usercounter*sizeof(*password));
        }
        username[(usercounter - 1)] = (char *)malloc(50*sizeof(char));
        strcpy(username[usercounter - 1], strtok(NULL, " "));
        password[(usercounter - 1)] = (char *)malloc(50*sizeof(char));
        strcpy(password[usercounter - 1], strtok(NULL, "\n"));
        free(buffer);
        continue;
    }
}

最佳答案

free(buffer);


为什么使用它,将导致未定义的行为,您正在释放静态内存。删除上述声明。

休息就好了

关于c - 如何将字符串保存在动态二维数组中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41047857/

10-11 18:53