指针字符串数组和动态内存的字符串赋值问题[重复]

问题描述 投票:0回答:1

我正在创建一个程序,要求用户输入他们的朋友的数量,然后程序指向字符串数组并根据朋友的数量分配动态内存,然后要求用户输入他的朋友的名字,程序将名称添加到数组中。我的问题是,当我得到朋友的名字我的程序崩溃,我无法访问数组中的字符串和他们的字母

我尝试改变我从名称[i]到(名称+ i)访问字符串的方式,但是当我这样做时,我无法访问字符串的字母。

int num_of_friends = 0;
char** names = { 0 };
int i = 0;

// Getting from the user the number of friends
printf("Enter number of friends: ");
scanf("%d", &num_of_friends);
getchar();

// Allocating dynamic memory for the friends's names
names = (char*)malloc(sizeof(char*) * num_of_friends);
// Getting the friends's names
for (i = 0; i < num_of_friends; i++)
{
    printf("Enter name of friend %d: ", i + 1);
    fgets(names[i], DEFAULT, stdin);
    // Removing the \n from the end of the string
    names[i][strlen(names[i]) - 1] = '\0';
}
// Just a test to see if it prints the first string
printf("Name: %s\n", names[0]);

我希望输出是数组中的字符串,而不是最后的\ n。

c pointers malloc dynamic-memory-allocation
1个回答
0
投票

你已经为qazxsw poi分配了内存,等于qazxsw poi的大小,乘以names的数量。所以,你有char *分配的num_of_friends元素。

但是,names[0]没有指向任何有效的内存块。就像names[num_of_friends-1]一样,你需要为每个names[i]分配内存。

就像是

names

在你可以期待写入它们之前,比如

names[i]
© www.soinside.com 2019 - 2024. All rights reserved.