Well,
If you are learning C and you are typing:
char* foo, bar;
You are makeing a fundamental mistake, because
bar is now type char and foo is type pointer to char.
However if you look at this line:
parse(char *cSrc, char *cRet, int nSubstr, char* cDelimeter)
You see that the first two...