Re: Help! Problem with string manipulation and using tokens??
well i went back to routines.cpp and fixed the agreement but i still get 3 error messages when i compile (that is when i compile and calling the tokenizing function as: tokenize( *token, max_token, *str);
these are the errors:
error C2065: 'max_tokens' : undeclared identifier
error C2065: 'str' : undeclared identifier
error C2664: 'strtok' : cannot convert parameter 1 from 'char *[]' to 'char *'
and im calling the function tokenize( *token, max_token, *str); under main.cpp
|