...
Noncompliant Code Example (Dereference)
In this example, p
is incremented a pointer increment and then dereferenceda dereference occurs. However, *p
the dereference has no effect.
Code Block | ||
---|---|---|
| ||
int *p; /* ... */ *p++; |
...
...
In this example, p
is incremented a pointer increment and then dereferenceda dereference occurs. However, *p
the dereference has no effect.
Code Block | ||
---|---|---|
| ||
int *p; /* ... */ *p++; |
...