首页 > 代码库 > 用calloc分配10块大小为4字节的内存空间,打印指针地址,并且打印出内存中的内容

用calloc分配10块大小为4字节的内存空间,打印指针地址,并且打印出内存中的内容

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main(void)
{
    int  i;
    int *str = NULL;
    str = (int*)calloc(10, sizeof(int));
    if(str==NULL)
    {
        printf("calloc error!\n");
        return -1;
    }
    printf("start addr: %p\n", str);
    printf("Memory contents:");
    for(i=0;i<10;i++)
    {
        printf("%d ",str[i]);
    }
    printf("\n");
    free(str);
    return 0;
}

 

用calloc分配10块大小为4字节的内存空间,打印指针地址,并且打印出内存中的内容