发布网友 发布时间: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