I still have some problems and I think if I manage to figure this one out that I will finally get the grip on it.
I have this line
that I strtok
it by the delimiter space. Now I want to store all tokens in a pointer on the array char* tokens[50]
. How would I store all the tokens in this pointer and how would I access all tokens once they are stored. I think I'd also need a counter int token_count
.