I want to declare a const pointer that points to a list of const pointers that point to const data. Throw me a fucking bone.
Name:
Anonymous2013-06-28 0:46
>>5
Doesn't char *argv[]
sound familiar? It's a pointer to an array of pointers to char (to strings of chars actually, but you obviously dont't point to an array containing a string, but rather merely to the first char of that array).