Skip to content

Conversation

@portemilio
Copy link

No description provided.

1. Explain the difference between ++*p, *p++ and *++p, if there is any.
++*p increments only the value of the pointer of p.
*p++ points to the incremented value of p.
*++p does the same thing as *p++.
Copy link
Contributor

Choose a reason for hiding this comment

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

Nice! 💯

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