我正在创建一个程序,要求用户输入朋友的数量,然后该程序创建一个指向字符串数组的指针,并根据朋友的数量分配动态内存,然后要求用户输入名称的朋友,该程序将名称添加到数组。 我的问题是当我得到朋友的名字时,我的程序崩溃了,我无法访问数组中的字符串及其字母
我尝试将我从名称[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。
答案 0 :(得分:0)
您已为Math.max
分配了内存,该内存等于names
的大小乘以char *
的数量。因此,您已分配了num_of_friends
至names[0]
个元素。
但是,names[num_of_friends-1]
并不指向任何有效的存储块。就像names[i]
一样,您需要为每个names
分配内存。
类似
names[i]
在您希望将其写入之前,例如
for (i = 0; i < num_of_friends; i++)
{
names[i] = malloc(DEFAULT);
assert(names[i]); // check against failure
}