标题有点混乱,但很难描述。
在我们的 c 方法中:
char* wc(char** cmds, char** stringstoread, char** filename, char* result)
{
char arr[4];
int count = 0;
while(*(cmds) != NULL)
{
if(strcmp(*(cmds), "-l") == 0) // Check each commands
arr[count++] = 'l';
else if(strcmp(*(cmds), "-c") == 0)
arr[count++] = 'c';
else if(strcmp(*(cmds), "-m") == 0)
arr[count++] = 'm';
else if(strcmp(*(cmds), "-w") == 0)
arr[count++] = 'w';
cmds++;
}
if(count == 0)
{
arr[0] = 'l', arr[1] = 'c', arr[2] = 'm',arr[3] = 'w';
}
while((*stringstoread) != NULL)
{
printf("inputs are %s \n", *(stringstoread));
stringstoread++;
}
return result;
}
我们处于调试模式 atm,但到目前为止,我们无法弄清楚为什么最后一个 while 循环会打印出这个:
inputs are input 1
inputs are input 2
inputs are -l
inputs are -w
inputs are -c
inputs are -m
当这样调用方法时,我们不知道 -l、-w -c 和 -m 是如何进入字符串存储的:
char tresult[10000];
char *tcmds[] = { "-l", "-w", "-c", "-m"};
char *tinput[] = {"input 1 \n\n", "input 2 \n\n"} ;
char *tfilename[] = {"fil 1", "fil 2"} ;
char *tmp = wc(tcmds, tinput, tfilename, tresult);
这有点混乱,但希望有人能提供帮助,我们是 C 新手,所以认为我们遇到了对该语言的标准误解。