Home  >  Article  >  What is the difference between *p+1 and *(p+1)

What is the difference between *p+1 and *(p+1)

zbt
zbtOriginal
2023-06-25 14:04:486826browse

*p 1 and *(p 1) The differences are: 1. Different priorities. In p 1, p will be dereferenced first, while in *(p 1), p 1 will be calculated first; 2 , the operation objects are different, p 1 is to dereference p first, and (p 1) is to add p to 1 first; 3. The results are different, p 1 is to add 1 to the value of the object pointed to by p, (p 1) is to add 1 to the value of the object pointed to by p. The value of the next object.

What is the difference between *p+1 and *(p+1)

The operating environment of this tutorial: Windows 10 system, DELL G3 computer.

What is the difference between *p 1 and *(p 1)? I believe that many netizens are still not clear about it. Today, the editor has brought you relevant tutorials, hoping to help you.

What is the difference between *p+1 and *(p+1)

1. Different priorities

p 1 and (p 1) have different operation priorities. In C/C, operators (dereference operator) and (addition operator) have different precedence. The addition operator has lower precedence than the dereference operator. Therefore, in p 1, p will be dereferenced first, and then 1 will be added; in *(p 1), because adding parentheses changes the priority, p 1 will be calculated first and then dereferenced.

2. Different operation objects

The objects operated by p 1 and (p 1) are also different. p 1 first dereferences p, gets the object pointed to by p, and then adds 1 to the object. And (p 1) first adds 1 to p to point to the next object, and then dereferences the new object.

3. The results are different

The results of p 1 and (p 1) are different. p 1 first dereferences p and then adds 1, so the result is the value of the object pointed to by p plus 1. And (p 1) adds 1 to p and then dereferences it, so the result is the value of the next object pointed to by p.

The above is the detailed content of What is the difference between *p+1 and *(p+1). For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn