页面中运行 ❯
获取你
自己的
网站
×
更改方向
更改主题,深色/浅色
转到 Spaces
#include <stdio.h> #include <stdlib.h> int main() { int *ptr1, *ptr2; // Allocate memory ptr1 = malloc(4); // Attempt to resize the memory ptr2 = realloc(ptr1, 8); if (ptr2 == NULL) { printf("Failed. Unable to resize memory"); } else { printf("Success. 8 bytes reallocated at address %p \n", ptr2); ptr1 = ptr2; } // Free memory allocated by malloc or realloc free(ptr1); return 0; }
成功。在地址 0x5640317512a0 重新分配了 8 个字节