Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
I was trying to understand what a->b referred to and I was able to understand it refers to
(*a).b
where a is a pointer. What does a->b->c mean in those terms - i.e. is it (*((*a).b)).c?
->
a->b->c
(a->b)->c
a->(b->c)
(b->c)
a
Yes, a->b->c is equivalent to (*(*a).b).c which is equivalent to (*((*a).b)).c.
(*(*a).b).c
(*((*a).b)).c
Add a comment
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.
->is left-to-right. This is enough to arrive at Matt's comment ofa->b->cbeing parsed as(a->b)->c.a->(b->c)as(b->c)is not a member ofa.