what happens in the Stack with this C function?

前端 未结 0 1684
灰色年华
灰色年华 2021-02-07 02:20

what happens in the Stack with this C function?

void Swap_two_pointers(int **p1,int **p2)
{
    int *temp = *p1;
    *p1 = *p2;
    *p2 = temp;
}
相关标签:
回答
  • 消灭零回复
提交回复
热议问题