Confusing with * for pointer or array in C++? I always confuse the usage of * in C++. I think sometime it uses as pointer and sometime it uses as array. I get trouble with these usage.
For Example:
void tokenize(char** name,int& num,char* buffer);
In this sentence char** name is for pointer or double array? I would like to know clearly the usage of pointer, reference(&) and array clearly.Thanks for every body who reply me.
LA |