我希望在按下“Enter”时循环中断。有什么建议吗?
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define len 20
#define limit 100
//Prototypes for functions
int read_word(char str[], int n);
int main(void)
{
char *p;
char word[len+1];
int i=0, nwords = 0;
//Loop for reading in words and allocating an array
for (;;)
{
if (nwords == limit)
{
printf("Insufficient Space\n");
break;
}
printf("Enter word: ");
scanf("%c", &word);
p = (char*) malloc(nwords*sizeof(char));
p[i]= read_word(word, len);
i++;
if (p == NULL)
{
printf("Insufficient Space\n");
break;
}
}
for(i=0; i<nwords; i++)
printf(" %s\n", p[i]);
return 0;
}
int read_word(char str[], int n)
{
char ch;
int i = 0;
while((ch = getchar()) != '\n')
if (i<n)
str[i++] = ch;
str[i] = '\0';
return i;
}
答案 0 :(得分:1)
您的scanf
调用会读取第一个字符,然后您的read_word
函数会覆盖它。如果scanf
调用读取换行符,则会被忽略。
行:
p = (char*) malloc(nwords*sizeof(char));
p[i]= read_word(word, len);
......也出现了错误。 read_word
返回一个整数(读取的字符串的长度),但是您要存储到char
数组中。此外,每次循环都会为p
重新分配内存,因此先前存储的值将丢失。
修复:
p
更改为int *
,并将其初始化为null malloc
来电更改为合适的realloc
scanf
的调用p == null
的检查;'或者:p
实际上是一个字符串数组(单词本身)而不是单词长度?在这种情况下,你必须:
p
更改为char **
realloc
调用)更改为nwords * sizeof(*p)
malloc
)存储,而不是让word
成为堆栈分配的数组p[i] = word;
而非当前分配。