我在为数组动态分配内存时遇到问题。该程序只是简单地将第一行与第二行交换,将第三行与第四行交换。我得到了奇怪的结果,例如:
输入字符串:你好
输入字符串:你好吗
输入字符串:我很好,谢谢
输入字符串:再见
输入字符串:bai
输入字符串:xx
==========================
你好吗
!我很好谢谢
你好
!你好吗
再见
!拜
我很好谢谢
!再见
白
!xx
int count = 0;
char *lines[MAX_LINES];
char *tmp[50];
printf("Enter string: ");
fgets(tmp, 50, stdin);
lines[count] = (char *) malloc((strlen(tmp)+1) * sizeof(char));
strcpy(lines[count], tmp);
while(strcmp("xx\n", lines[count])){
count++;
printf("Enter string: ");
fgets(tmp, 50, stdin);
lines[count] = (char *) malloc((strlen(tmp)+1)* sizeof(char));
strcpy(lines[count], tmp);
}
void exchange(char * records[])
{
char * temp;
temp = records[0];
records[0] = records[1];
records[1] = temp;
temp = records[2];
records[2] = records[3];
records[3] = temp;
}
void printArray(char * inputs[], int row, int col)
{
int i, j;
for(i = 0; i < row; i++){
for(j = 0; j < col; j++){
printf("%c", inputs[i][j]);
}
}
}