How to get double pointers address?
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Hello, How do u get double pointers address in memory?
char **String; I need to get String's address? is there a way to get it?
thanksIt is never late to learn
-
Hello, How do u get double pointers address in memory?
char **String; I need to get String's address? is there a way to get it?
thanksIt is never late to learn
Gofur Halmurat wrote:
How do u get double pointers address in memory?
AFAIK, address of any data type can be obtained by address-of operator (&). obviously, &String. :)