Skip to content

Conversation

@julialaurentan
Copy link

No description provided.


++*p would be read as ++(*p). (dereferences p then increments it)
*p++ would be read as *(p++). (increments p then dereferences it)
*++p would be read as *(p++) as well. (incremeents p then dereferences it)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perfect answer! 💯

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants