Skip to content

Commit

Permalink
sym
Browse files Browse the repository at this point in the history
  • Loading branch information
nzcv committed Dec 10, 2021
1 parent c4adc2c commit e702c51
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions arm/15pointer.md/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,12 @@ void test03() {

## *符号的使用

```c
int x = 10;

int *px = &x;
int &&ppx = &px;
int *px1 = *ppx;
```

![20211210140053](https://cdn.jsdelivr.net/gh/nzcv/picgo/20211210140053.png)

0 comments on commit e702c51

Please sign in to comment.