Computer Science, asked by shalehaparveenhyd, 3 months ago

difference between *p++ and p++​

Answers

Answered by MrPrince07
0

Explanation:

Difference between ++*p, *p++ and *++p in C

In C programming language, *p represents the value stored in a pointer. ++ is increment operator used in prefix and postfix expressions. * is dereference operator. Precedence of prefix ++ and * is same and both are right to left associative.

Similar questions