...it by specifying the values of the elements. For example, the following code declares and initializes an array of 10 integers named `nums` with the values 1, 2, 3, ..., 10:
```c++
int[10] nums = {1, 2, 3, ..., 10};
```
## Hashtags
* #C++
* #variables
* #declaration
* #arrays
* #initialization