PROGRAMMING:5.3 - using 54321 to initialize array and display
Modify the program in code listing 5-5 and initialize it with 5, 4, 3, 2, and 1 from the beginning.
-----Exercise 5-3 of Mingjie C language
The requirements of listing 5-5 are as follows:
```
/*
Initialize and display the elements of the array with 1, 2, 3, 4 and 5 from the beginning
*/
```
###Input example:
The input is empty
```in
```
###Output example:
```out
v[0] = 5
v[1] = 4
v[2] = 3
v[3] = 2
v[4] = 1
```
answer:If there is no answer, please comment
-----Exercise 5-3 of Mingjie C language
The requirements of listing 5-5 are as follows:
```
/*
Initialize and display the elements of the array with 1, 2, 3, 4 and 5 from the beginning
*/
```
###Input example:
The input is empty
```in
```
###Output example:
```out
v[0] = 5
v[1] = 4
v[2] = 3
v[3] = 2
v[4] = 1
```
answer:If there is no answer, please comment