Jump to content


CStrike09

Member Since 10 Nov 2021
Offline Last Active Nov 10 2021 12:37 PM

Posts I've Made

In Topic: Multiple levels of indirection in C++ pointers

10 November 2021 - 12:38 PM

 

By this we mean to say that we can have many pointers pointing to each other. A pointer pointing to another pointer is considered as a level of indirection so lets say I have created a pointer a which is pointing to some int temp and now I create a pointer b which is pointing to pointer a so here this is a simple case of indirection where pointer b is not directly pointing towards temp but it points to a which is pointing towards temp, other than indirection pointers have other cool properties and uses most of them discussed by  Scaler Topics you can go through these once