标签: c
如果我们为c
ptr=(cast-type*)malloc(byte-size)
和
free(ptr);
当我们释放该指针时,free命令如何知道在c中为该指针分配了多少字节大小。该数据是否存储在任何内存中?