helloeveryone。我对编程很新,目前正在尝试学习C编程以进一步推进我的任何项目。我刚刚学会了如何使用malloc和realloc,并且在我尝试使用strcat结合来自多维数组的两个给定字符串之前,一切看起来都很好。
我应该根据用户输入获得两个字符串的组合,奇怪的是,第一个字符要么丢失要么被其他字符替换掉...... 我将包括源代码以及下面的输出。我真的很感谢你的帮助。提前致谢!! (最后不要介意韩国人......我是韩国人:P)
enter code here
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main(void)
{
int i, j;
const int row = 3;
char *pstr[3];
char temp[100];
int k,p = 0;
printf("Type in any three characters\n");
for (i = 0; i < row; i++)
{
pstr[i] = (char *)malloc(strlen(temp) + 1); //initialize the lenght of the elements in 2 part of 2D array of char b[ROW] via length of the given string
}
for (i = 0; i < row; i++)
{
scanf("%s", temp);
strcpy(pstr[i], temp);
}
printf("\n");
for (i = 0; i < row; i++)
{
printf("%s\n", pstr[i]);
}
scanf("%d", &p);
scanf("%d", &k);
printf("%s\n", pstr[p]);
printf("%s\n", pstr[k]);
*pstr[k] = (char *)realloc(pstr[k], strlen(pstr[p])+100);
strcat(pstr[k], pstr[p]);
printf("%s", pstr[k]);
for (i = 0; i < row; i++)
{
free(pstr[i]);
}
return 0;
}
\ 输出:: LINK IS AN INTERNATIONAL SIGN FOR , IMAGE OVER HERE!!!
答案 0 :(得分:1)
两个主要问题:
在初始化之前使用temp
,当其内容为 indeterminate 时,会导致未定义的行为。
当您执行*pstr[k] = realloc(...)
时,您取消引用pstr[k]
中的指针并获取它的第一个元素,即单个字符。然后,您将realloc
调用的结果分配给此char
元素。所以你基本上失去了实际的指针,pstr[k]
仍将指向相同的内存(现在可能无效)。
还有其他问题,但这两个问题最严重。
答案 1 :(得分:0)
我在你的代码中找到了这些
1)如果k或p大于2,则会产生运行时错误
2)*pstr[k] = (char *)realloc(pstr[k], strlen(pstr[p])+100);
但是这行也可以在编译时给出错误(至少是mac) - 因为它们不相同 所以你可能会这样改变 -
*pstr[k] = *(char *)realloc(pstr[k], strlen(pstr[p])+100);
3)重新分配后,您将免费获得异常。看到这个 - How free memory after of realloc