博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用malloc分别分配2KB的空间,然后用realloc调整为6KB的内存空间,打印指针地址...
阅读量:6247 次
发布时间:2019-06-22

本文共 416 字,大约阅读时间需要 1 分钟。

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<malloc.h>
int main(void)
{
    int *str1 = NULL;
    int *str2 = NULL;
    str1 = (int*)malloc(2*1024*sizeof(char));
    if(str1==NULL)
    {
        printf("malloc error!\n");
        return -1;
    }
    printf("malloc:  %p\n", str1);
    str2 = (int*)realloc(str1,6*1024*sizeof(char));
    if(str2==NULL)
    {
        printf("realloc error!\n");
        return -1;
    }
    printf("realloc: %p\n",str2);
    free(str2);
    return 0;
}
 

转载地址:http://firia.baihongyu.com/

你可能感兴趣的文章
在AdMob中介内创建横幅广告自定义事件
查看>>
51cto这个搜索值肿了 赶紧修改下
查看>>
中介者模式
查看>>
更改DNS脚本
查看>>
Mybatis源码阅读之二
查看>>
黑马程序员-Java基础知识预备之Java集合
查看>>
手机上的大数据:移动互联网的入口
查看>>
Can't connect to local MySQL server through socket
查看>>
用户登陆时隐藏密码
查看>>
VBA--word模板标签替换操作
查看>>
Winxp下安装Django
查看>>
rsync+nfs+inotify
查看>>
分布式系统部署方案
查看>>
Linux下虚拟终端Screen
查看>>
mysql密码过期
查看>>
苏宁互联网玩法变了
查看>>
入股博纳,不想吃独食的阿里影业是想多点开花
查看>>
pdf如何修改错误
查看>>
mybatis学习五 多参数查询(一)
查看>>
sysctl命令--Linux命令应用大词典729个命令解读
查看>>