Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAbbey Jackson
1,660 PointsMemory addresses of pointers
Can someone explain in plain English please...?
The question is "How would you access the memory address for a pointer: int *p ?"
I thought that &p would give the memory address of the pointer itself, *p. However that answer is wrong, the correct answer is p.
I thought that using %p and then p would give the memory address of the item that *p is pointing to, not the memory address of *p itself.
Am I understanding this backwards or is it the wording of the question that has me mixed up?
1 Answer
Zhiqi Lin
875 PointsI also think the correct answer should be &p.