I want to pass a pointer to a function. I want this pointer to point to some place in the middle of an array. Say I have an array like such unsigned char BufferData[5000];, would the following statement be correct syntactically?
writeSECTOR( destAddress, (char *)( BufferData + (int)(i * 512 )) );
// destAddress is of type unsigned long
// writeSECTOR prototype: int writeSECTOR ( unsigned long a, char * p );
// i is an int
intis unnecessary but otherwise your statement is valid. – PP. Oct 6 '10 at 13:17array + iis far more readable than the&array[i]because I read the latter as "dereference array, element i, and take the address" as opposed to the simpler "address offset i from array". The problem with your favourite notation is that it is switching between pointers and de-referencing in the one statement. Whereas pointer addition is just pure math. – PP. Oct 6 '10 at 13:46