malloc动态分配
int my_malloc(int num)
{
int *p;
p = (int *)malloc(num * sizeof(int));
// do sth
free(p);
p = NULl;
}
malloc的使用方法,熟练运用。
int my_malloc(int num)
{
int *p;
p = (int *)malloc(num * sizeof(int));
// do sth
free(p);
p = NULl;
}
malloc的使用方法,熟练运用。