Hi,
Could anyone please explain how the memory allocatio is done in case of double pointers?
chet6 0 Newbie Poster
Recommended Answers
Jump to PostHi,
Could anyone please explain how the memory allocatio is done in case of double pointers?int var = 10 ;
int *pvar = &var;
int **ppvar = &pvar;here
var
is 10. and this will be stored in some memory say that is
1000 (i.e &var =1000)
so
…
All 8 Replies
Gaiety 1 Junior Poster
chet6 0 Newbie Poster
Iam3R 24 Junior Poster
chet6 0 Newbie Poster
uskok 0 Newbie Poster

manutm
Iam3R commented: its really good though i have not gone through this completely +1
Iam3R 24 Junior Poster

manutm
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.