This question has been bothering me for a while.
If I do int* a = new int[n], for example, I only have an pointer that points to the beginning of array a, but how does C/C++ know about n? I know if I want to pass this array to another function, then I have to pass the length of the array with it, so I guess C/C++ does not really know how long this array is.
I know we can infer the end of a character array char* by looking for the NUL terminator. But is there a similar mechanism for other arrays, like int? Meanwhile, char can be more than a character -- you can also treat it as an integer type. Then how does C++ know where this array ends then?
This question starts to bother me even more when I am developing embedded Python (If you are not familiar with embedded python, you may ignore this paragraph and just answer the above questions. I will still appreciate it). In Python there is a "ByteArray", and the only way to convert this "ByteArray" to C/C++ is to use PyString_AsString() to convert it to char*. But if this ByteArray has 0 in it, then C/C++ would think that char* array stops early. This is not the worst part. The worst part is, say I do a
char* arr = PyString_AsString(something)
void* pt = calloc(1, 1000);
if st happens to start with 0, then C/C++ will almost guarantee to wipe out everything in arr, since it thinks arr ends right after a NULL appears. Then it might just wipe out everything in arr by allocating a a trunk of memory to pt.
Thank you very much for your time! I really appreciate it.
0is not the null terminator.\0is. – Brian Roach Mar 11 '11 at 1:50*print*(and similar functions) would thinkarrstops early when supplied with your char array--it's intrinsic to the algorithm dealing with C-style char arrays. The C/C++ runtime will not be so confused. See above comment. – Santa Mar 11 '11 at 1:56arrhas a null character. That will have no affect whatsoever on the call tocalloc(which takes two arguments), which certainly will not overwrite any part of the previously allocated buffer in any case. Terminating strings with NULL is just a widely accepted convention in C, it has nothing to do with memory management. If you aren't passingarrto string functions, then it is perfectly fine to have elements equal to 0. – Alex Mar 11 '11 at 1:58