C++源码:C语言中的内存动态分配

//USEAGE:   Example for MAlloc()  IN program C:
//          C语言中的内存动态分配

//  XJ

#include <stdio.h>
#include <malloc.h>
void fun1();
 main()
  {
   fun1();
  }

void fun1()
   {
    int *i;                        //定义指针
    i=(int *)malloc(sizeof(int));  //分配空间
    *i=10;
    printf("\n       You are Wellcome !     C语言中的内存动态分配 \n");
    printf("\n       Conten:  *i=%d  \n",*i);
    free(i);
   
   }

(0)

相关推荐