What is the difference between P++ and ++P explain with example.
Answers
Answered by
1
Answer:
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.
hope it's helpful to you
Answered by
0
Answer:
Difference
In first case 2 symbol of plus are after p
in second case , 2 symbol of plus are before p
Similar questions