C语言malloc函数分配的内存空间以什么为结尾

2024-11-28 18:56:00
推荐回答(1个)
回答1:

int
*p
=
(int*)malloc(n*sizeof(int));函数返回一个int型的指针,是n个sizeof(int)大小的内存空间的首地址。没有什么标志结尾的。