这是my last question的延续。
到目前为止,我已成功获取用户输入并将其存储到字符串中。例如,我转过身来:
1:E 2:B 2:B 2:B 4:G
进入:
1:E
2:B
2:B
2:B
4:G
这是一个字符串数组。
这是我接下来要做的,但它不适合我:
1
E
2
B
2
B
2
B
4
G
每个都是存储在一个字符数组中的字符。
这是我正常工作的代码块:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_INPUT_SIZE ( (sizeof(char)*96) + (sizeof(int)*48) )
int main () {
char *input = malloc(MAX_INPUT_SIZE);
printf("Example input: 1:E 2:C 2:C 2:C 8:D\n");
printf("Your input:\n\n");
fgets(input, MAX_INPUT_SIZE, stdin);
// Removing newline
if ( (strlen(input) > 0) && (input[strlen(input) - 1] == '\n') )
input[strlen(input) - 1] = '\0';
int i = 0;
char *p = strtok(input, " ");
char *array[MAX_PAIRS];
while (p != NULL){
array[i++] = p;
p = strtok(NULL, " ");
}
// Checking the array
int j = 0;
for (j=0; j<i; j++) {
printf("\n %s", array[j]);
}
这段代码运行得很好。接下来是我目前正在使用的代码:
int k = 0;
int l = 0;
char *letter = malloc( sizeof(char) * (i * 2) );
for (k=0; k<i; k++) {
char *q = strtok(array[k], ":");
while (q != NULL) {
letter[l++] = q;
q = strtok(NULL, ":");
}
}
// Checking the array
int m = 0;
for (m=0; m<l; m++) {
printf("\n %c", letter[m]);
}
return 0;
}
当我去检查数组时,它会为我想要打印的每个字符打印一个垃圾符号。我不明白我在这里做错了什么。
答案 0 :(得分:1)
letter
是char
的数组
q
是char*
。
因此,letter[l++] = q
不会做你想要的,因为你现在正在char*
存储char
;我想,编译器会吐出一些关于截断的警告。