Why we used double and triple pointer in objective-C or C language?

前端 未结 5 485
误落风尘
误落风尘 2021-01-14 17:14

I confused when i want to take single pointer and when should i take double pointer?
In following structure what exactly did?



        
5条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-14 17:57

    In general pointer is used to hold the address of another variable. What if we need to hold the address of pointer ,in that case we use double pointer. When we want to hold the address of double pointer we use triple pointer.

提交回复
热议问题