PROGRAMMING:5.1 - assign values 01234 to array elements in turn
Modify the program in code listing 5-3 to assign values of 0, 1, 2, 3, 4 to the elements in the array from the beginning.
-----Exercise 5-1 of Mingjie C language
The requirements of listing 5-3 are as follows:
```
/*
Assign 1, 2, 3, 4, 5 to each element of the array in turn and display (using the for statement)
*/
```
###Input example:
Input is blank:
```in
```
###Output example:
The corresponding output is given here. For example:
```out
v[0] = 0
v[1] = 1
v[2] = 2
v[3] = 3
v[4] = 4
```
answer:If there is no answer, please comment
-----Exercise 5-1 of Mingjie C language
The requirements of listing 5-3 are as follows:
```
/*
Assign 1, 2, 3, 4, 5 to each element of the array in turn and display (using the for statement)
*/
```
###Input example:
Input is blank:
```in
```
###Output example:
The corresponding output is given here. For example:
```out
v[0] = 0
v[1] = 1
v[2] = 2
v[3] = 3
v[4] = 4
```
answer:If there is no answer, please comment