Hi,
I have a method call say some fucntion that takes in a pointer of an array of char
char anArray[32]=
{'1', '2', '3', '4', '5', '6'};
// the function call
someFunction(&anArray[0])
I don't think I have quite grasped the concepts of pointers yet, does the code i have written above apply a pointer to a function ?
thanks