1
我有一個函數返回前n個字符,直到達到指定的字符。我想傳遞一個ptr來設置字符串中的下一個單詞;我怎麼做到這一點?這是我目前的代碼。C編程本地字符指針
char* extract_word(char* ptrToNext, char* line, char parseChar)
// gets a substring from line till a space is found
// POST: word is returned as the first n characters read until parseChar occurs in line
// FCTVAL == a ptr to the next word in line
{
int i = 0;
while(line[i] != parseChar && line[i] != '\0' && line[i] != '\n')
{
i++;
}
printf("line + i + 1: %c\n", *(line + i + 1)); //testing and debugging
ptrToNext = (line + i + 1); // HELP ME WITH THIS! I know when the function returns
// ptrToNext will have a garbage value because local
// variables are declared on the stack
char* temp = malloc(i + 1);
for(int j = 0; j < i; j++)
{
temp[j] = line[j];
}
temp[i+1] = '\0';
char* word = strdup(temp);
return word;
}
'word'駐留在堆棧上,而不是'word'指向的數據。 – Mahesh 2012-02-25 06:04:23