Computer Science, asked by rawatdeepaindor9273, 11 months ago

Are the expression ++*ptr and *ptr++ are same? Select one:

a. False

b. True

Answers

Answered by TanviSalvi
0

Answer:

answer is a. false

Explanation:

*ptr++ increments the pointer and not the value, whereas the ++*ptr increments the value being pointed by ptr

Similar questions