PROGRAMMING:Matrix transpose
Transpose a 3 * 3 integer matrix with pointer.
It is required to define and call the function void move (int * pointer) to realize the above matrix transpose function.
Output format: each line of data is separated by a space, and there is no space after the last data
###Input example:
```in
1 2 3
4 5 6
7 8 9
```
###Output example:
```out
1 4 7
2 5 8
3 6 9
```
answer:If there is no answer, please comment
It is required to define and call the function void move (int * pointer) to realize the above matrix transpose function.
Output format: each line of data is separated by a space, and there is no space after the last data
###Input example:
```in
1 2 3
4 5 6
7 8 9
```
###Output example:
```out
1 4 7
2 5 8
3 6 9
```
answer:If there is no answer, please comment