如何在C语言中将字符串添加到字符串数组中

时间:2015-01-11 17:10:17

标签: c arrays string memory allocation

所以我正在重新认识C,这个概念让我特别困惑。

目标是创建一个动态分配的字符串数组。我已完成此操作,首先创建一个空数组并为输入的每个字符串分配适当的空间量。唯一的问题是,当我尝试实际添加一个字符串时,我得到一个seg错误!我无法弄清楚为什么,我有预感,这是因为我的strcpy函数没有看到任何错误。

我在这个网站上看了一遍详尽的答案,我找到了帮助,但不能完全达成协议。非常感谢您提供的任何帮助!

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int main()
{
  int count = 0; //array index counter
  char *word; //current word
  char **array = NULL;


  char *term = "q"; //termination character
  char *prnt = "print";

  while (strcmp(term, word) != 0)
{
  printf("Enter a string.  Enter q to end.  Enter print to print array\n");
  // fgets(word, sizeof(word), stdin); adds a newline character to the word.  wont work in this case
  scanf("%s", word);

  //printf("word: %s\nterm: %s\n",word, term);

  if (strcmp(term, word) == 0)
    {
    printf("Terminate\n");
    } 

  else if (strcmp(prnt, word) == 0)
  {
    printf("Enumerate\n");

    int i;

    for (i=0; i<count; i++)
    {
      printf("Slot %d: %s\n",i, array[i]);
    }

  }
  else
  {
    printf("String added to array\n");
    count++;
    array = (char**)realloc(array, (count+1)*sizeof(*array));
    array[count-1] = (char*)malloc(sizeof(word));
    strcpy(array[count-1], word);
  }

}

  return ;

}

1 个答案:

答案 0 :(得分:6)

word没有分配内存。当用户在您的程序中输入单词时,您当前形式的程序会践踏未分配的内存。

您应该猜测输入的大小,并像这样分配输入缓冲区:

char word[80];  // for 80 char max input per entry