我想从 STDIN 读取以下行并将值保存在 c 中:
A:2
B:3
C:AAAA1
C:AASC2
C:aade3
D:1
D:199
这是我的c程序:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <time.h>
#include <sys/time.h>
int main(int argc, char **argv)
{
char buf[BUFSIZ];
short a = 0;
short b = 0;
short anzb=0;
short anza=0;
char *c
short *d;
short i;
while (fgets(buf, BUFSIZ, stdin) != NULL)
{
if (buf[strlen(buf)-1] == '\n') {
char *isa = strstr(buf, "A:");
char *isb = strstr(buf, "B:");
char *isc = strstr(buf, "C:");
char *isd = strstr(buf, "D:");
if(isa){
char *sep = substring(isa,3,strlen(isa));
a = atoi(sep);
d = malloc(a * sizeof(short));
}else if(isb){
char *sep = substring(isb,3,strlen(isb));
b = atoi(sep);
c = malloc(b * sizeof(char));
}else if(isc){
char *sep = substring(isc,3,strlen(isc));
c[anzc] = sep;
anzc++;
}else if(isd){
char *sep = substring(isd,3,strlen(isd));
d[anzd] = sep;
anzd++;
}
}
}
printf("%i\n", a);
printf("%i\n", b);
for(i=0; i<=anzc-1;i++){
printf("%c", c[i]);
}
return 0;
}
我是c新手,所以我对指针和数组知之甚少,所以我希望你能帮助我。
在值 A: 和 B: 被读取并存储在 a 和 bi 之后,可以为 c 和 d 的行创建我的数组。我认为这是我的问题。我不知道此时如何在我的程序中创建一个数组。我尝试了 malloc 和其他东西,但我的知识很少。
如果我已经读取了 c 和 d(A 和 B)的值(大小),我只想创建一个数组。
然后我想将值保存在数组中。
我希望你能帮助我修复我的代码。这一天我尝试了很多,但没有任何效果,我现在非常无助。
编辑:
我得到分段错误的新尝试 11:
else if(isb){
char *sep = substring(isb,8,strlen(isb));
b = atoi(sep);
c = malloc(b * sizeof(char*));
int i;
for (i = 0; i < subst; i++)
{
c[i] = malloc(13);
}
}else if(isc){
char *sep = substring(isc,8,strlen(isc));
strcpy(c[anzc], &buf[3]);
anzc++;
}