I have two questions.
Do realloc()
and memcpy()
copy the entries in an array to another in a way faster than just iterating on eac
Presuming you are talking about glibc, and since your questions are implementation dependent, it's probably best just to check the source:
malloc.c
memcpy.c
The way I read it, the answers would be: