通过已知指针初始化新的指针

以下面函数为例
int* shuffle(int* nums, int numsSize, int n, int* returnSize){
    int* ans = malloc(n*2 * sizeof(int));
}
原文地址:https://www.cnblogs.com/jiaxin1N/p/13714907.html