当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 realloc()用法及代码示例



描述

C库函数void *realloc(void *ptr, size_t size)尝试调整指向的内存块的大小ptr之前分配的调用malloc或者calloc

声明

以下是 realloc() 函数的声明。

void *realloc(void *ptr, size_t size)

参数

  • ptr- 这是指向先前使用 malloc、calloc 或 realloc 分配的要重新分配的内存块的指针。如果这是NULL,则分配一个新块并由函数返回指向它的指针。

  • size- 这是内存块的新大小,以字节为单位。如果为 0 且 ptr 指向现有内存块,则释放 ptr 指向的内存块并返回 NULL 指针。

返回值

此函数返回一个指向新分配内存的指针,如果请求失败,则返回 NULL。

示例

下面的例子展示了 realloc() 函数的用法。

#include <stdio.h>
#include <stdlib.h>

int main () {
   char *str;

   /* Initial memory allocation */
   str = (char *) malloc(15);
   strcpy(str, "tutorialspoint");
   printf("String = %s,  Address = %u\n", str, str);

   /* Reallocating memory */
   str = (char *) realloc(str, 25);
   strcat(str, ".com");
   printf("String = %s,  Address = %u\n", str, str);

   free(str);
   
   return(0);
}

让我们编译并运行上面的程序,将产生以下结果 -

String = tutorialspoint, Address = 355090448
String = tutorialspoint.com, Address = 355090448

相关用法


注:本文由纯净天空筛选整理自 C library function - realloc()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。