I know that it's a common convention to pass the length of dynamically allocated arrays to functions that manipulate them:
void initializeAndFree(int* anArray, size_t length);
int main(){
size_t arrayLength = 0;
scanf("%d", &arrayLength);
int* myArray = (int*)malloc(sizeof(int)*arrayLength);
initializeAndFree(myArray, arrayLength);
}
void initializeAndFree(int* anArray, size_t length){
int i = 0;
for (i = 0; i < length; i++) {
anArray[i] = 0;
}
free(anArray);
}
but if there's no way for me to get the length of the allocated memory from a pointer, how does free() "automagically" know what to deallocate when all I'm giving it is the very same pointer? Why can't I get in on the magic, as a C programmer?
Where does free() get its free (har-har) knowledge from?

int lengthis wrong. Array lengths and offsets and type sizes, and other such things are of the typesize_t, which is defined in thestddef.h,stdio.h,stdlib.h, andstring.hheaders. The main difference betweensize_tandintis thatintis signed andsize_tis unsigned, but on some (e.x. 64-bit) platforms they may also be different sizes. You should always usesize_t. – Chris Lutz Apr 16 '10 at 6:21int32_t,regex_t,time_t,wchar_t, etc. – Matthew Flaschen Apr 16 '10 at 11:52_tsuffix is a type that is not a fundamental type of the language. Which means thatsize_tis unsigned int, unsigned long, or something like that. – u0b34a0f6ae May 15 '10 at 17:19