码迷,mamicode.com
首页 > 其他好文 > 详细

使用malloc分别分配2KB的空间,然后用realloc调整为6KB的内存空间,打印指针地址

时间:2014-09-18 14:55:44      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:linux内核   linux   

#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;
}

 

使用malloc分别分配2KB的空间,然后用realloc调整为6KB的内存空间,打印指针地址

标签:linux内核   linux   

原文地址:http://blog.csdn.net/u013012494/article/details/39370825

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!