//arrays type array name and subscript int first_array[9 ]; declares an integer array of 9 elements; - how can you initialize: int first_array[9 ]= {3, 7, 10, 17, 21, 48, 49, 59, 97}; - how to fill it with values int main() { int first_array[9]; cout << " - give the value for the first_array[ ] : "; int i; for ( i=0; i<9; i++) { cin >> first_array[i]; } for (i = 0; i<9; i++) cout << i << ": " << first_array[i] < using namespace std; int main() { //long hosszutomb[25]; //int egesztomb[5]={3, 21, 8, 27,48}; const int max=30; int v[max]; int n; do { cout << "how many data between: (1<=n<= "<>n; if(n<=1 || n>max) cout<<"not a good value, tell again: "<max ); cout << " the values are: " << endl; for(int i=0; i> v[i]; } // the values in the array: for(int i=0; i