首页 热点资讯 义务教育 高等教育 出国留学 考研考公

realloc函数怎么用啊?

发布网友 发布时间:2022-04-01 08:29

我来回答

2个回答

热心网友 时间:2022-04-01 09:59

动态分配内存空间,原型:
void *realloc( void *memblock, size_t size );

例子:
#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include <malloc.h>
#include <string.h>

void main(void)
{
char* ptr = NULL;

realloc(ptr, 5);
assert(ptr != NULL);
strcpy(ptr, "abcd");
puts(ptr);
free(ptr);
}

热心网友 时间:2022-04-01 11:17

看看吧

http://www.zahui.com/html/1/3573.htm

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com