我正在尝试编写一个简单的程序,将用户输入的字符串读入指针数组。读取没问题,但是当我想在我的方法中添加一个额外的参数以保存我实际读取的字符串时,它就会停止工作。编译器不是很有用,所以我决定在这里解决我的问题。
实际代码:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void read(char**, int *);
void write(char**);
int main() {
int amount = 0;
int * amount_p = &amount;
char *pt_p[1000];
read(pt_p,amount_p);
write(pt_p);
}
void read(char ** pt, int * amount) {
char stop[] = "STOP";
char* woord;
int i = 0;
printf("Enter a word: ");
scanf("%70s", woord);
pt[i] = malloc(sizeof(char)*(strlen(woord)+1));
pt[i] = strcpy(pt[i], woord);
i++;
while(strcmp(stop,pt[i-1]) != 0) {
printf("Enter a word: ");
scanf("%70s", woord);
pt[i] = malloc((strlen(woord)+1)*sizeof(char));
pt[i] = strcpy(pt[i], woord);
i++;
}
*amount = i;
}
void write(char ** pt) {
int i = 0;
char stop[] = "STOP";
while(strcmp(stop,pt[i]) != 0 ) {
printf("pt[%d]-> %s",i,pt[i]);
printf("X \n");
i++;
}
}
答案 0 :(得分:2)
你需要分配一些空间,你可以输入字符串
char* woord;
只是声明一个特别指向的指针。
而是将其声明为
char woord[128];
在堆栈上为您的输入分配128个字节。
也可以使用fgets()
代替scanf()
来读取字符串,这样就可以防止用户输入过大的字符串。
if ( fgets( woord, sizeof(wooord), stdin ) != NULL )
{
char* p = strchr( woord, '\n' );
if (p != NULL )
{
*p = '\0';
}
}