How do pointer to pointers work in C?

前端 未结 14 1281
渐次进展
渐次进展 2020-11-22 02:03

How do pointers to pointers work in C? When would you use them?

14条回答
  •  灰色年华
    2020-11-22 03:06

    You have a variable that contains an address of something. That's a pointer.

    Then you have another variable that contains the address of the first variable. That's a pointer to pointer.

提交回复
热议问题